summaryrefslogtreecommitdiff
path: root/sbin/disklabel/editor.c
diff options
context:
space:
mode:
authorKenneth R Westerback <krw@cvs.openbsd.org>2012-01-02 03:46:40 +0000
committerKenneth R Westerback <krw@cvs.openbsd.org>2012-01-02 03:46:40 +0000
commitdfed1f8c095eeb5e3ec8be2c6f0377ceeb67c049 (patch)
tree20abaa8b0b929a68eb12551bc2d406a3680755bc /sbin/disklabel/editor.c
parentd5a172c2df4675ac69d8468aec1a92ee8b0aff26 (diff)
Change last "#if (NUMBOOT == 1)" to "#if NUMBOOT > 0".
Diffstat (limited to 'sbin/disklabel/editor.c')
-rw-r--r--sbin/disklabel/editor.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/disklabel/editor.c b/sbin/disklabel/editor.c
index de17e1d4bf7..dcd734c47c7 100644
--- a/sbin/disklabel/editor.c
+++ b/sbin/disklabel/editor.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: editor.c,v 1.261 2011/12/25 20:00:40 krw Exp $ */
+/* $OpenBSD: editor.c,v 1.262 2012/01/02 03:46:39 krw Exp $ */
/*
* Copyright (c) 1997-2000 Todd C. Miller <Todd.Miller@courtesan.com>
@@ -1727,7 +1727,7 @@ find_bounds(struct disklabel *lp)
" command to change this.\n\n", starting_sector,
ending_sector);
} else {
-#if (NUMBOOT == 1)
+#if NUMBOOT > 0
/* Boot blocks take up the first cylinder */
starting_sector = lp->d_secpercyl;
if (verbose)