summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexandre Ratchov <ratchov@cvs.openbsd.org>2011-06-27 07:57:39 +0000
committerAlexandre Ratchov <ratchov@cvs.openbsd.org>2011-06-27 07:57:39 +0000
commit85354abb26a0982d90c9d5515a4217b09c5dc13e (patch)
tree3782900b7e5a21227d41d089f13a15aeb79c5e66
parent85e9dc50e4d118933be135bef065ee596093aefd (diff)
remove two forgotten debug printf()s
-rw-r--r--usr.bin/aucat/midi.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/usr.bin/aucat/midi.c b/usr.bin/aucat/midi.c
index d5135571294..da00d80bfdf 100644
--- a/usr.bin/aucat/midi.c
+++ b/usr.bin/aucat/midi.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: midi.c,v 1.35 2011/06/27 07:17:44 ratchov Exp $ */
+/* $OpenBSD: midi.c,v 1.36 2011/06/27 07:57:38 ratchov Exp $ */
/*
* Copyright (c) 2008 Alexandre Ratchov <alex@caoua.org>
*
@@ -588,7 +588,6 @@ ctl_dump(struct aproc *p, struct abuf *obuf)
msg[4] = SYSEX_AUCAT_DUMPEND;
msg[5] = SYSEX_END;
ctl_copymsg(obuf, msg, 6);
- dbg_puts("end dump\n");
abuf_flush(obuf);
}
@@ -1151,7 +1150,6 @@ ctl_ev(struct aproc *p, struct abuf *ibuf)
return;
if (len != SYSEX_SIZE(dumpreq))
return;
- dbg_puts("dump request\n");
if (ibuf->duplex)
ctl_dump(p, ibuf->duplex);
break;