mirror of
https://github.com/xzeldon/htop.git
synced 2025-07-15 21:44:36 +03:00
Spacing around operators
This commit is contained in:
@ -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;
|
||||
|
Reference in New Issue
Block a user