diff options
author | Charles Keepax <ckeepax@opensource.cirrus.com> | 2017-09-07 16:38:52 +0100 |
---|---|---|
committer | Charles Keepax <ckeepax@opensource.cirrus.com> | 2018-04-11 15:54:11 +0100 |
commit | e40758bb09cfae53d11b6fa97844c903bbd252e8 (patch) | |
tree | 6c8dbc5693d785e3c8f0a9284d52c773a8057df0 /src | |
parent | ab216f5225024cfeb3558a89a94bc15465046095 (diff) |
Fixup some minor code formatting issues
Signed-off-by: Charles Keepax <ckeepax@opensource.cirrus.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/mixer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mixer.c b/src/mixer.c index d07797a..a9cc483 100644 --- a/src/mixer.c +++ b/src/mixer.c @@ -637,7 +637,7 @@ int mixer_ctl_get_array(const struct mixer_ctl *ctl, void *array, size_t count) void *source; size_t total_count; - if ((!ctl) || !count || !array) + if (!ctl || !count || !array) return -EINVAL; total_count = ctl->info.count; |