diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2004-08-08 19:04:26 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2004-08-08 19:04:26 +0000 |
commit | 889f3d21fbb021429b724ecdb8320c3eb9cde03f (patch) | |
tree | 46c1cb70beebf52095a1a30b6750b16f677a4aa0 /sbin/disklabel | |
parent | 8a0c24c71f1196b735373a9d574c7bfb8c7e2ee8 (diff) |
spacing
Diffstat (limited to 'sbin/disklabel')
-rw-r--r-- | sbin/disklabel/disklabel.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sbin/disklabel/disklabel.c b/sbin/disklabel/disklabel.c index a57cfc4a88d..24ec70ee215 100644 --- a/sbin/disklabel/disklabel.c +++ b/sbin/disklabel/disklabel.c @@ -1,4 +1,4 @@ -/* $OpenBSD: disklabel.c,v 1.89 2004/08/03 09:30:11 otto Exp $ */ +/* $OpenBSD: disklabel.c,v 1.90 2004/08/08 19:04:25 deraadt Exp $ */ /* * Copyright (c) 1987, 1993 @@ -39,7 +39,7 @@ static const char copyright[] = #endif /* not lint */ #ifndef lint -static const char rcsid[] = "$OpenBSD: disklabel.c,v 1.89 2004/08/03 09:30:11 otto Exp $"; +static const char rcsid[] = "$OpenBSD: disklabel.c,v 1.90 2004/08/08 19:04:25 deraadt Exp $"; #endif /* not lint */ #include <sys/param.h> @@ -1354,7 +1354,7 @@ getasciilabel(FILE *f, struct disklabel *lp) for (i = 0; (cp = tp) && *cp != '\0' && i < NDDATA;) { v = GETNUM(lp->d_drivedata[i], cp, 0, &errstr); - if (errstr) + if (errstr) warnx("line %d: bad drivedata %s", lineno, cp); lp->d_drivedata[i++] = v; |