summaryrefslogtreecommitdiffstats
path: root/UptimeMeter.c
diff options
context:
space:
mode:
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;