diff options
author | Marc Balmer <mbalmer@cvs.openbsd.org> | 2007-09-07 14:23:56 +0000 |
---|---|---|
committer | Marc Balmer <mbalmer@cvs.openbsd.org> | 2007-09-07 14:23:56 +0000 |
commit | 94f28d133ed6040d83ef4d62037ee50a5bb24db6 (patch) | |
tree | 89090515c3d7b2aec82d1036f8956649d673d35f /usr.sbin/repquota | |
parent | 9a9920af7acfec37df025ac9a81e9ea8d22aafbf (diff) |
Fix use of arguments in usage().
ok winiger
Diffstat (limited to 'usr.sbin/repquota')
-rw-r--r-- | usr.sbin/repquota/repquota.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/usr.sbin/repquota/repquota.c b/usr.sbin/repquota/repquota.c index d7caf77e822..c347b3ee8b2 100644 --- a/usr.sbin/repquota/repquota.c +++ b/usr.sbin/repquota/repquota.c @@ -38,7 +38,7 @@ static char copyright[] = #ifndef lint /*static char sccsid[] = "from: @(#)repquota.c 8.1 (Berkeley) 6/6/93";*/ -static char *rcsid = "$Id: repquota.c,v 1.28 2007/02/18 23:17:59 jmc Exp $"; +static char *rcsid = "$Id: repquota.c,v 1.29 2007/09/07 14:23:55 mbalmer Exp $"; #endif /* not lint */ /* @@ -165,8 +165,7 @@ void usage(void) { extern char *__progname; - fprintf(stderr, "usage: repquota [-aguv] filesystem ...\n", - __progname); + fprintf(stderr, "usage: %s [-aguv] filesystem ...\n", __progname); exit(1); } |