summaryrefslogtreecommitdiffstats
path: root/UptimeMeter.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 /UptimeMeter.c
parentb23f8235e28472c410dcb00893e0e3d403892673 (diff)
Spacing around operators
Diffstat (limited to 'UptimeMeter.c')
-rw-r--r--UptimeMeter.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/UptimeMeter.c b/UptimeMeter.c
index 89e34175..79070286 100644
--- a/UptimeMeter.c
+++ b/UptimeMeter.c
@@ -24,9 +24,9 @@ static void UptimeMeter_updateValues(Meter* this, char* buffer, int len) {
return;
}
int seconds = totalseconds % 60;
- int minutes = (totalseconds/60) % 60;
- int hours = (totalseconds/3600) % 24;
- int days = (totalseconds/86400);
+ int minutes = (totalseconds / 60) % 60;
+ int hours = (totalseconds / 3600) % 24;
+ int days = (totalseconds / 86400);
this->values[0] = days;
if (days > this->total) {
this->total = days;

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