summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexandre Ratchov <ratchov@cvs.openbsd.org>2012-04-19 06:58:30 +0000
committerAlexandre Ratchov <ratchov@cvs.openbsd.org>2012-04-19 06:58:30 +0000
commit6d759891dc056714906e392aaf305d2423b93977 (patch)
treeee56bc7747b0be1eb246d5672b9f2b719f1fef6e
parent9b7969b028a9d1f47fa26f0b9c3f9c2985c53c03 (diff)
unbreak compilation without DEBUG defined
-rw-r--r--usr.bin/aucat/wav.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/usr.bin/aucat/wav.c b/usr.bin/aucat/wav.c
index 13a80916560..97044f6f44e 100644
--- a/usr.bin/aucat/wav.c
+++ b/usr.bin/aucat/wav.c
@@ -456,9 +456,11 @@ wav_reset(struct wav *f)
case WAV_INIT:
/* nothing yet */
break;
+#ifdef DEBUG
case WAV_MIDI:
dbg_puts("wav_reset: in midi mode\n");
dbg_panic();
+#endif
}
}