From 385a7dbe1ec8b8a64d8999019028cce71565c4dc Mon Sep 17 00:00:00 2001 From: Hisham Muhammad Date: Wed, 11 Mar 2009 13:26:39 +0000 Subject: [PATCH] simplify uptime calculation --- UptimeMeter.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/UptimeMeter.c b/UptimeMeter.c index ec1e72ad..0e716539 100644 --- a/UptimeMeter.c +++ b/UptimeMeter.c @@ -25,9 +25,9 @@ static void UptimeMeter_setValues(Meter* this, char* buffer, int len) { fclose(fd); int totalseconds = (int) ceil(uptime); int seconds = totalseconds % 60; - int minutes = (totalseconds-seconds) % 3600 / 60; - int hours = (totalseconds-seconds-(minutes*60)) % 86400 / 3600; - int days = (totalseconds-seconds-(minutes*60)-(hours*3600)) / 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;