Fix one column wrong offset in previous change days->day

This commit is contained in:
Andrey A. Chernov 1995-10-08 23:16:45 +00:00
parent 7aa70c9e8e
commit fbad6604dd
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=11339

View File

@ -91,7 +91,7 @@ pr_idle(idle)
/* If idle more than 36 hours, print as a number of days. */
if (idle >= 36 * 3600) {
int days = idle / 86400;
(void)printf(" %dday%s ", days, days > 1 ? "s" : "" );
(void)printf(" %dday%s ", days, days > 1 ? "s" : " " );
}
/* If idle more than an hour, print as HH:MM. */