From 02ff6b20fbf863f2a54ed99f958256ff605d434f Mon Sep 17 00:00:00 2001 From: Alexandre Ratchov Date: Thu, 11 Aug 2016 08:17:57 +0200 Subject: [PATCH] add braces to reduce diff with mixer bits --- sndiod/dev.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sndiod/dev.c b/sndiod/dev.c index 6285dd8..ac8110c 100644 --- a/sndiod/dev.c +++ b/sndiod/dev.c @@ -433,8 +433,9 @@ 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)