mostly style fixes

This commit is contained in:
Denis Vlasenko
2006-11-01 10:25:35 +00:00
parent 048c93cc55
commit 9225854144
12 changed files with 156 additions and 161 deletions

View File

@@ -30,7 +30,7 @@ static const char * idle_string (time_t t)
if (s < 60)
return ".";
if (s < (24 * 60 * 60)) {
sprintf (str, "%02d:%02d",
sprintf(str, "%02d:%02d",
(int) (s / (60 * 60)),
(int) ((s % (60 * 60)) / 60));
return str;