mirror of
https://github.com/freebsd/freebsd-src
synced 2024-11-05 18:22:52 +00:00
Correct the grammar for the label of the number of users.
It is plural when zero and >1 users are logged in.
This commit is contained in:
parent
9b4814bba2
commit
1b0c06d938
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=6542
1 changed files with 1 additions and 1 deletions
|
@ -383,7 +383,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 a new issue