diff options
| author | Scott Mace <smace@FreeBSD.org> | 1995-02-18 08:24:16 +0000 |
|---|---|---|
| committer | Scott Mace <smace@FreeBSD.org> | 1995-02-18 08:24:16 +0000 |
| commit | 1b0c06d9389db54b91db79357a155f1f2aba7a48 (patch) | |
| tree | 4aff0a4762e40daf15cd9bc9d935b072a0454637 /usr.bin/w | |
| parent | 9b4814bba21e4f1b9f274b0eeb3376566e39167a (diff) | |
Notes
Diffstat (limited to 'usr.bin/w')
| -rw-r--r-- | usr.bin/w/w.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/w/w.c b/usr.bin/w/w.c index 9d1e06067888c..0a31930ca450d 100644 --- a/usr.bin/w/w.c +++ b/usr.bin/w/w.c @@ -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. |
