diff options
author | Mats O Jansson <maja@cvs.openbsd.org> | 1996-10-01 09:23:39 +0000 |
---|---|---|
committer | Mats O Jansson <maja@cvs.openbsd.org> | 1996-10-01 09:23:39 +0000 |
commit | b05189199bdedd4f50bb6a4f0791bf59b3cb84e1 (patch) | |
tree | cbfe46f4a1d6ae0074a206cdf6345ab4ad10b59d | |
parent | c8986e03c1fc1567db195d05a52c7422c46f74e4 (diff) |
Make it compilable even if NUMBOOT=1 (vax). -moj
-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 348fcc3ac48..aaed7eede78 100644 --- a/sbin/disklabel/disklabel.c +++ b/sbin/disklabel/disklabel.c @@ -1,4 +1,4 @@ -/* $OpenBSD: disklabel.c,v 1.21 1996/09/30 11:28:35 deraadt Exp $ */ +/* $OpenBSD: disklabel.c,v 1.22 1996/10/01 09:23:38 maja Exp $ */ /* $NetBSD: disklabel.c,v 1.30 1996/03/14 19:49:24 ghudson Exp $ */ /* @@ -44,7 +44,7 @@ static char copyright[] = #endif /* not lint */ #ifndef lint -static char rcsid[] = "$OpenBSD: disklabel.c,v 1.21 1996/09/30 11:28:35 deraadt Exp $"; +static char rcsid[] = "$OpenBSD: disklabel.c,v 1.22 1996/10/01 09:23:38 maja Exp $"; #endif /* not lint */ #include <sys/param.h> @@ -1458,7 +1458,7 @@ usage() char blank[] = " "; #if NUMBOOT == 1 - boot = " [-B [-b xxboot]]" + boot = " [-B [-b xxboot]]"; #elif NUMBOOT == 2 boot = " [-B [-b xxboot [-s bootxx]]]"; #endif |