Drop newline at end of if branch
diff --git a/DateTimeMeter.c b/DateTimeMeter.c
index 2988675..fc9e0c8 100644
--- a/DateTimeMeter.c
+++ b/DateTimeMeter.c
@@ -26,8 +26,7 @@
    int year = lt->tm_year + 1900;
    if (((year % 4 == 0) && (year % 100 != 0)) || (year % 400 == 0)) {
       this->total = 366;
-   }
-   else {
+   } else {
       this->total = 365;
    }
    this->values[0] = lt->tm_yday;