fix annoying number consistency bug.
This commit is contained in:
parent
36592a50b1
commit
81cef407d8
|
@ -384,7 +384,7 @@ pr_header(nowp, nusers)
|
|||
}
|
||||
|
||||
/* Print number of users logged in to system */
|
||||
(void)printf(" %d user%s", nusers, nusers > 1 ? "s" : "");
|
||||
(void)printf(" %d user%s", nusers, nusers != 1 ? "s" : "");
|
||||
|
||||
/*
|
||||
* Print 1, 5, and 15 minute load averages.
|
||||
|
|
Loading…
Reference in New Issue