diff options
author | Jason McIntyre <jmc@cvs.openbsd.org> | 2007-07-16 18:43:06 +0000 |
---|---|---|
committer | Jason McIntyre <jmc@cvs.openbsd.org> | 2007-07-16 18:43:06 +0000 |
commit | 9af1bfbdc3c2f6b97b150692dd6332f99e28798b (patch) | |
tree | 8ee6f5ca27db3c6effd9eba296b340ccab5cf716 | |
parent | 3ca52aba53d8d71bfc3d4954e8e141680886cc3d (diff) |
oops, missed a bit from tobias' diff - add "usage: " to usage();
from Tobias Stoeckmann
-rw-r--r-- | usr.bin/lastcomm/lastcomm.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/lastcomm/lastcomm.c b/usr.bin/lastcomm/lastcomm.c index 92f76c36a25..210b0395346 100644 --- a/usr.bin/lastcomm/lastcomm.c +++ b/usr.bin/lastcomm/lastcomm.c @@ -1,4 +1,4 @@ -/* $OpenBSD: lastcomm.c,v 1.15 2007/07/16 18:40:18 jmc Exp $ */ +/* $OpenBSD: lastcomm.c,v 1.16 2007/07/16 18:43:05 jmc Exp $ */ /* $NetBSD: lastcomm.c,v 1.9 1995/10/22 01:43:42 ghudson Exp $ */ /* @@ -40,7 +40,7 @@ static char copyright[] = #if 0 static char sccsid[] = "@(#)lastcomm.c 8.2 (Berkeley) 4/29/95"; #endif -static char rcsid[] = "$OpenBSD: lastcomm.c,v 1.15 2007/07/16 18:40:18 jmc Exp $"; +static char rcsid[] = "$OpenBSD: lastcomm.c,v 1.16 2007/07/16 18:43:05 jmc Exp $"; #endif /* not lint */ #include <sys/param.h> @@ -220,6 +220,6 @@ void usage(void) { (void)fprintf(stderr, - "lastcomm [-f file] [command ...] [user ...] [terminal ...]\n"); + "usage: lastcomm [-f file] [command ...] [user ...] [terminal ...]\n"); exit(1); } |