OSDN Git Service
(root)
/
android-x86
/
external-alsa-lib.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b22bd37
)
Fixed braces
author
Jaroslav Kysela
<perex@perex.cz>
Sat, 21 Jul 2001 10:17:03 +0000
(10:17 +0000)
committer
Jaroslav Kysela
<perex@perex.cz>
Sat, 21 Jul 2001 10:17:03 +0000
(10:17 +0000)
src/conf.c
patch
|
blob
|
history
diff --git
a/src/conf.c
b/src/conf.c
index
4dbc7d8
..
ff54282
100644
(file)
--- a/
src/conf.c
+++ b/
src/conf.c
@@
-483,7
+483,7
@@
static int parse_value(snd_config_t **_n, snd_config_t *father, input_t *input,
free(s);
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;
errno = 0;
err = safe_strtol(s, &i);