From 7709b5d017aed6a06ed50be61eaf9f748dd74479 Mon Sep 17 00:00:00 2001 From: Alexandre Ratchov Date: Fri, 5 Oct 2012 14:24:38 +0200 Subject: [PATCH] style --- sndiod/midi.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/sndiod/midi.c b/sndiod/midi.c index af9f8d5..80e93e6 100644 --- a/sndiod/midi.c +++ b/sndiod/midi.c @@ -215,13 +215,10 @@ midi_send(struct midi *iep, unsigned char *msg, int size) continue; oep = midi_ep + i; if (msg[0] <= 0x7f) { - /* data (sysex continuation) */ if (oep->owner != iep) continue; - } else if (msg[0] <= 0xf7) { - /* new running status */ + } else if (msg[0] <= 0xf7) oep->owner = iep; - } #ifdef DEBUG if (log_level >= 4) { midi_log(iep);