diff options
author | 2007-07-29 17:12:18 +0000 | |
---|---|---|
committer | 2007-07-29 17:12:18 +0000 | |
commit | e01e6ca4ad8d331aef348bc86d65b346ee58b3f7 (patch) | |
tree | d4354d185f946f4ad97416fe740cec752a55862f | |
parent | regen (diff) | |
download | wireguard-openbsd-e01e6ca4ad8d331aef348bc86d65b346ee58b3f7.tar.xz wireguard-openbsd-e01e6ca4ad8d331aef348bc86d65b346ee58b3f7.zip |
sync the command usage with its synopsis
ok jmc@
-rw-r--r-- | usr.bin/dc/dc.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/usr.bin/dc/dc.c b/usr.bin/dc/dc.c index bcaa4abc467..66c564987f7 100644 --- a/usr.bin/dc/dc.c +++ b/usr.bin/dc/dc.c @@ -1,4 +1,4 @@ -/* $OpenBSD: dc.c,v 1.9 2006/03/25 07:49:56 otto Exp $ */ +/* $OpenBSD: dc.c,v 1.10 2007/07/29 17:12:18 sobrado Exp $ */ /* * Copyright (c) 2003, Otto Moerbeek <otto@drijf.net> @@ -17,7 +17,7 @@ */ #ifndef lint -static const char rcsid[] = "$OpenBSD: dc.c,v 1.9 2006/03/25 07:49:56 otto Exp $"; +static const char rcsid[] = "$OpenBSD: dc.c,v 1.10 2007/07/29 17:12:18 sobrado Exp $"; #endif /* not lint */ #include <sys/stat.h> @@ -36,7 +36,8 @@ extern char *__progname; static __dead void usage(void) { - (void)fprintf(stderr, "usage: %s [-x] [-e expr] [file]\n", __progname); + (void)fprintf(stderr, "usage: %s [-x] [-e expression] [file]\n", + __progname); exit(1); } |