mirror of
https://github.com/alsa-project/alsa-lib.git
synced 2025-11-04 13:30:08 -05:00
Fixed braces
This commit is contained in:
parent
b22bd371e9
commit
2097e99245
1 changed files with 1 additions and 1 deletions
|
|
@ -483,7 +483,7 @@ static int parse_value(snd_config_t **_n, snd_config_t *father, input_t *input,
|
||||||
free(s);
|
free(s);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
if (err == 0 && (s[0] >= '0' && s[0] <= '9') || s[0] == '-') {
|
if (err == 0 && ((s[0] >= '0' && s[0] <= '9') || s[0] == '-')) {
|
||||||
long i;
|
long i;
|
||||||
errno = 0;
|
errno = 0;
|
||||||
err = safe_strtol(s, &i);
|
err = safe_strtol(s, &i);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue