diff options
author | Igor Sobrado <sobrado@cvs.openbsd.org> | 2007-10-20 18:08:58 +0000 |
---|---|---|
committer | Igor Sobrado <sobrado@cvs.openbsd.org> | 2007-10-20 18:08:58 +0000 |
commit | 8261c76bcfd28697dd2ea98e05667007634d9bd5 (patch) | |
tree | 96d0e04589a52e75dab1af79217a428e1c04aaaa /sbin | |
parent | 018b3e58a7c0962cea1605ef4b4114733465fc7a (diff) |
an usage message should fit on a 80-column display
ok jmc@
Diffstat (limited to 'sbin')
-rw-r--r-- | sbin/fsck/fsck.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sbin/fsck/fsck.c b/sbin/fsck/fsck.c index 2407b3359af..cf16d00b42b 100644 --- a/sbin/fsck/fsck.c +++ b/sbin/fsck/fsck.c @@ -1,4 +1,4 @@ -/* $OpenBSD: fsck.c,v 1.24 2006/03/20 19:50:09 dhill Exp $ */ +/* $OpenBSD: fsck.c,v 1.25 2007/10/20 18:08:57 sobrado Exp $ */ /* $NetBSD: fsck.c,v 1.7 1996/10/03 20:06:30 christos Exp $ */ /* @@ -35,7 +35,7 @@ * */ -static const char rcsid[] = "$OpenBSD: fsck.c,v 1.24 2006/03/20 19:50:09 dhill Exp $"; +static const char rcsid[] = "$OpenBSD: fsck.c,v 1.25 2007/10/20 18:08:57 sobrado Exp $"; #include <sys/param.h> #include <sys/mount.h> @@ -471,8 +471,8 @@ usage(void) { extern char *__progname; - fprintf(stderr, "usage: %s [-dfnpvy] [-l maxparallel] " - "[-T fstype:fsoptions] [-t fstype] [special | node ...]\n", - __progname); + fprintf(stderr, "usage: %s " + "[-dfnpvy] [-l maxparallel] [-T fstype:fsoptions]\n" + " [-t fstype] [special | node ...]\n", __progname); exit(1); } |