From 1b0c06d9389db54b91db79357a155f1f2aba7a48 Mon Sep 17 00:00:00 2001 From: Scott Mace Date: Sat, 18 Feb 1995 08:24:16 +0000 Subject: Correct the grammar for the label of the number of users. It is plural when zero and >1 users are logged in. --- usr.bin/w/w.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'usr.bin') diff --git a/usr.bin/w/w.c b/usr.bin/w/w.c index 9d1e06067888..0a31930ca450 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. -- cgit v1.2.3