summaryrefslogtreecommitdiffstats
path: root/DateMeter.c
diff options
context:
space:
mode:
authorBenny Baumann <BenBE@geshi.org>2020-10-31 23:28:02 +0100
committerBenny Baumann <BenBE@geshi.org>2020-11-02 22:15:01 +0100
commit61e14d4bb25268593019e6df3eb02264b4ac8e0e (patch)
tree910b68d9a5ee1c4d25b2cf3ee24abaaf3e6a096b /DateMeter.c
parentb23f8235e28472c410dcb00893e0e3d403892673 (diff)
Spacing around operators
Diffstat (limited to 'DateMeter.c')
-rw-r--r--DateMeter.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/DateMeter.c b/DateMeter.c
index c1a097f6..bfe0cbf1 100644
--- a/DateMeter.c
+++ b/DateMeter.c
@@ -22,10 +22,10 @@ static const int DateMeter_attributes[] = {
static void DateMeter_updateValues(Meter* this, char* buffer, int size) {
time_t t = time(NULL);
struct tm result;
- struct tm *lt = localtime_r(&t, &result);
+ struct tm* lt = localtime_r(&t, &result);
this->values[0] = lt->tm_yday;
int year = lt->tm_year + 1900;
- if (((year % 4 == 0) && (year % 100!= 0)) || (year%400 == 0)) {
+ if (((year % 4 == 0) && (year % 100 != 0)) || (year % 400 == 0)) {
this->total = 366;
}
else {

© 2014-2024 Faster IT GmbH | imprint | privacy policy