diff options
author | charnier <charnier@FreeBSD.org> | 1997-09-17 06:20:45 +0000 |
---|---|---|
committer | charnier <charnier@FreeBSD.org> | 1997-09-17 06:20:45 +0000 |
commit | 7f53c003f5540404b2c94a3af48e22a076aba47b (patch) | |
tree | 7041fe10dd766acc50eec3f2fc26e31c40572af6 | |
parent | aaae64c991c822b762ac56ba2cc8a23cb4def67e (diff) | |
download | FreeBSD-src-7f53c003f5540404b2c94a3af48e22a076aba47b.zip FreeBSD-src-7f53c003f5540404b2c94a3af48e22a076aba47b.tar.gz |
Wrap too long lines.
Requested by: Bruce.
-rw-r--r-- | usr.sbin/config/mkioconf.c | 4 | ||||
-rw-r--r-- | usr.sbin/config/mkswapconf.c | 8 |
2 files changed, 7 insertions, 5 deletions
diff --git a/usr.sbin/config/mkioconf.c b/usr.sbin/config/mkioconf.c index db67b2d..5db49a7 100644 --- a/usr.sbin/config/mkioconf.c +++ b/usr.sbin/config/mkioconf.c @@ -36,7 +36,7 @@ static char sccsid[] = "@(#)mkioconf.c 8.2 (Berkeley) 1/21/94"; #endif static const char rcsid[] = - "$Id$"; + "$Id: mkioconf.c,v 1.31 1997/09/15 06:37:09 charnier Exp $"; #endif /* not lint */ #include <err.h> @@ -1131,7 +1131,7 @@ news_ioconf() } if (dp->d_flags) { printf( - "controllers (e.g. %s%d) don't have flags, only devices do\n", + "controllers (e.g. %s%d) don't have flags, only devices do\n", dp->d_name, dp->d_unit); continue; } diff --git a/usr.sbin/config/mkswapconf.c b/usr.sbin/config/mkswapconf.c index c296809..e563968 100644 --- a/usr.sbin/config/mkswapconf.c +++ b/usr.sbin/config/mkswapconf.c @@ -36,7 +36,7 @@ static char sccsid[] = "@(#)mkswapconf.c 8.1 (Berkeley) 6/6/93"; #endif static const char rcsid[] = - "$Id$"; + "$Id: mkswapconf.c,v 1.13 1997/09/15 06:37:10 charnier Exp $"; #endif /* not lint */ /* @@ -156,7 +156,8 @@ nametodev(name, defunit, defslice, defpartition) cp++; unit = *cp ? atoi(cp) : defunit; if (unit < 0 || unit > 31) { - warnx("%s: invalid device specification, unit out of range", name); + warnx( + "%s: invalid device specification, unit out of range", name); unit = defunit; /* carry on more checking */ } if (*cp) { @@ -170,7 +171,8 @@ nametodev(name, defunit, defslice, defpartition) if (*cp) { slice = atoi(cp); if (slice < 0 || slice >= MAX_SLICES - 1) { - warnx("%s: invalid device specification, slice out of range", + warnx( + "%s: invalid device specification, slice out of range", cp); slice = defslice; } |