diff options
author | Alexandre Ratchov <ratchov@cvs.openbsd.org> | 2012-04-19 06:58:30 +0000 |
---|---|---|
committer | Alexandre Ratchov <ratchov@cvs.openbsd.org> | 2012-04-19 06:58:30 +0000 |
commit | 6d759891dc056714906e392aaf305d2423b93977 (patch) | |
tree | ee56bc7747b0be1eb246d5672b9f2b719f1fef6e | |
parent | 9b7969b028a9d1f47fa26f0b9c3f9c2985c53c03 (diff) |
unbreak compilation without DEBUG defined
-rw-r--r-- | usr.bin/aucat/wav.c | 2 |
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 } } |