fix annoying number consistency bug.

This commit is contained in:
cgd 1995-03-28 12:48:45 +00:00
parent 36592a50b1
commit 81cef407d8
1 changed files with 1 additions and 1 deletions

View File

@ -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.