From 4dcfed9dce5e7c9cd45eaa1428b255089dae1d66 Mon Sep 17 00:00:00 2001 From: Alexandre Ratchov Date: Thu, 20 Oct 2016 07:32:27 +0200 Subject: [PATCH] remove braces around single-statement block --- sndiod/dev.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/sndiod/dev.c b/sndiod/dev.c index ac8110c..6285dd8 100644 --- a/sndiod/dev.c +++ b/sndiod/dev.c @@ -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)