summaryrefslogtreecommitdiffstats
path: root/usr.sbin/repquota
diff options
context:
space:
mode:
authormbalmer <mbalmer@openbsd.org>2007-09-07 14:23:55 +0000
committermbalmer <mbalmer@openbsd.org>2007-09-07 14:23:55 +0000
commitba1e80a516604827153e4b68cf968c5605a84031 (patch)
tree5292c0aaa9a30759391a2d832775cd78a8a59404 /usr.sbin/repquota
parentwe have man section 3f by default now; (diff)
downloadwireguard-openbsd-ba1e80a516604827153e4b68cf968c5605a84031.tar.xz
wireguard-openbsd-ba1e80a516604827153e4b68cf968c5605a84031.zip
Fix use of arguments in usage().
ok winiger
Diffstat (limited to 'usr.sbin/repquota')
-rw-r--r--usr.sbin/repquota/repquota.c5
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);
}