summaryrefslogtreecommitdiff
path: root/sys/arch
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2011-10-06 19:51:00 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2011-10-06 19:51:00 +0000
commitbf022eae7701afc89b40f21a5a8b1463ec3c93bf (patch)
treef78080debc3b450eb8e6fd3b3c33f21436adba6d /sys/arch
parent3f0c5a30e1eaf4698482f759c36fc7ab0e1a6388 (diff)
An #ifdef without a #else in the middle of an indexed array is bad.
ok miod
Diffstat (limited to 'sys/arch')
-rw-r--r--sys/arch/mvme88k/mvme88k/conf.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/arch/mvme88k/mvme88k/conf.c b/sys/arch/mvme88k/mvme88k/conf.c
index fa0ec26b86e..c23c72b249f 100644
--- a/sys/arch/mvme88k/mvme88k/conf.c
+++ b/sys/arch/mvme88k/mvme88k/conf.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: conf.c,v 1.44 2011/01/14 19:04:08 jasper Exp $ */
+/* $OpenBSD: conf.c,v 1.45 2011/10/06 19:50:59 deraadt Exp $ */
/*-
* Copyright (c) 1991 The Regents of the University of California.
@@ -119,6 +119,8 @@ struct bdevsw bdevsw[] =
bdev_disk_init(NCCD,ccd), /* 9: concatenated disk driver */
#if notyet
bdev_disk_init(NXD,xd), /* 10: XD disk */
+#else
+ bdev_notdef(), /* 10 */
#endif /* notyet */
bdev_notdef(), /* 11 */
bdev_notdef(), /* 12 */