diff options
author | 2009-06-17 09:51:51 +0000 | |
---|---|---|
committer | 2009-06-17 09:51:51 +0000 | |
commit | 7d9ef5cbe77ab2f8aa2644c8c1963bf54a9209bb (patch) | |
tree | f47577766606c0e0e1c531efc694734eeeb22aad /usr.bin/nice/nice.c | |
parent | Document the 'defer' ifconfig flag. From me with a few tweaks by dlg@. (diff) | |
download | wireguard-openbsd-7d9ef5cbe77ab2f8aa2644c8c1963bf54a9209bb.tar.xz wireguard-openbsd-7d9ef5cbe77ab2f8aa2644c8c1963bf54a9209bb.zip |
remove superfluous spaces around brackets in usage.
Diffstat (limited to 'usr.bin/nice/nice.c')
-rw-r--r-- | usr.bin/nice/nice.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/nice/nice.c b/usr.bin/nice/nice.c index 1fcebb2079d..68e6eb27ebd 100644 --- a/usr.bin/nice/nice.c +++ b/usr.bin/nice/nice.c @@ -1,4 +1,4 @@ -/* $OpenBSD: nice.c,v 1.9 2003/06/10 22:20:49 deraadt Exp $ */ +/* $OpenBSD: nice.c,v 1.10 2009/06/17 09:51:51 sobrado Exp $ */ /* $NetBSD: nice.c,v 1.9 1995/08/31 23:30:58 jtc Exp $ */ /* @@ -40,7 +40,7 @@ char copyright[] = #if 0 static char sccsid[] = "@(#)nice.c 5.4 (Berkeley) 6/1/90"; #endif -static char rcsid[] = "$OpenBSD: nice.c,v 1.9 2003/06/10 22:20:49 deraadt Exp $"; +static char rcsid[] = "$OpenBSD: nice.c,v 1.10 2009/06/17 09:51:51 sobrado Exp $"; #endif /* not lint */ #include <sys/time.h> @@ -108,7 +108,7 @@ static void usage(void) { extern char *__progname; - fprintf(stderr, "usage: %s [ -n increment ] utility [ argument ...]\n", + fprintf(stderr, "usage: %s [-n increment] utility [argument ...]\n", __progname); exit(1); } |