remove braces around single-statement block

This commit is contained in:
Alexandre Ratchov 2016-10-20 07:32:27 +02:00
parent 33bbca5999
commit 4dcfed9dce
1 changed files with 1 additions and 2 deletions

View File

@ -433,9 +433,8 @@ dev_midi_omsg(void *arg, unsigned char *msg, int len)
switch (x->type) {
case SYSEX_TYPE_RT:
if (x->id0 == SYSEX_CONTROL && x->id1 == SYSEX_MASTER) {
if (len == SYSEX_SIZE(master)) {
if (len == SYSEX_SIZE(master))
dev_master(d, x->u.master.coarse);
}
return;
}
if (x->id0 != SYSEX_MMC)