summaryrefslogtreecommitdiffstats
path: root/usr.sbin/config/mkswapconf.c
diff options
context:
space:
mode:
authorcharnier <charnier@FreeBSD.org>1997-09-17 06:20:45 +0000
committercharnier <charnier@FreeBSD.org>1997-09-17 06:20:45 +0000
commit7f53c003f5540404b2c94a3af48e22a076aba47b (patch)
tree7041fe10dd766acc50eec3f2fc26e31c40572af6 /usr.sbin/config/mkswapconf.c
parentaaae64c991c822b762ac56ba2cc8a23cb4def67e (diff)
downloadFreeBSD-src-7f53c003f5540404b2c94a3af48e22a076aba47b.zip
FreeBSD-src-7f53c003f5540404b2c94a3af48e22a076aba47b.tar.gz
Wrap too long lines.
Requested by: Bruce.
Diffstat (limited to 'usr.sbin/config/mkswapconf.c')
-rw-r--r--usr.sbin/config/mkswapconf.c8
1 files changed, 5 insertions, 3 deletions
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;
}
OpenPOWER on IntegriCloud