From: Takashi Sakamoto Date: Fri, 15 Jul 2016 00:23:08 +0000 (+0900) Subject: mixer: change code formatting for elem_read_route() X-Git-Tag: v1.1.2~39 X-Git-Url: https://git.alsa-project.org/?a=commitdiff_plain;h=b67b9e42cafecbfacffaee76ba060055f4099b27;p=alsa-lib.git mixer: change code formatting for elem_read_route() This commit applies code format according to typical and moderate rule. Signed-off-by: Takashi Sakamoto Signed-off-by: Takashi Iwai --- diff --git a/src/mixer/simple_none.c b/src/mixer/simple_none.c index 0f23a063..65b7b7b2 100644 --- a/src/mixer/simple_none.c +++ b/src/mixer/simple_none.c @@ -282,7 +282,8 @@ static int elem_read_route(selem_none_t *s, int dir, selem_ctl_type_t type) unsigned int idx1 = idx; if (idx >= c->values) idx1 = 0; - if (!snd_ctl_elem_value_get_integer(ctl, idx1 * c->values + idx1)) + if (!snd_ctl_elem_value_get_integer(ctl, + idx1 * c->values + idx1)) s->str[dir].sw &= ~(1 << idx); } return 0;