From: Takashi Sakamoto Date: Sun, 21 Jun 2020 12:52:09 +0000 (+0900) Subject: ctl: elem_value: fix indentation X-Git-Tag: v0.1.0~16 X-Git-Url: https://git.alsa-project.org/?a=commitdiff_plain;h=a891d0dec64ea4f0a1100890644822478f28ea7b;p=alsa-gobject.git ctl: elem_value: fix indentation Fixes: cc98991330fc ("ctl: elem_value: split function with two argument into the one with single argument") --- diff --git a/src/ctl/elem-value.c b/src/ctl/elem-value.c index a37227b..8023124 100644 --- a/src/ctl/elem-value.c +++ b/src/ctl/elem-value.c @@ -304,7 +304,7 @@ void alsactl_elem_value_set_iec60958_channel_status(ALSACtlElemValue *self, length = MIN(length, G_N_ELEMENTS(value->value.iec958.status)); for (i = 0; i < length; ++i) - value->value.iec958.status[i] = status[i]; + value->value.iec958.status[i] = status[i]; } /** @@ -329,7 +329,7 @@ void alsactl_elem_value_get_iec60958_channel_status(ALSACtlElemValue *self, *length = MIN(*length, G_N_ELEMENTS(value->value.iec958.status)); for (i = 0; i < *length; ++i) - (*status)[i] = value->value.iec958.status[i]; + (*status)[i] = value->value.iec958.status[i]; } /** @@ -354,7 +354,7 @@ void alsactl_elem_value_set_iec60958_user_data(ALSACtlElemValue *self, length = MIN(length, G_N_ELEMENTS(value->value.iec958.subcode)); for (i = 0; i < length; ++i) - value->value.iec958.subcode[i] = data[i]; + value->value.iec958.subcode[i] = data[i]; } /**