mirror of
https://github.com/alsa-project/alsa-lib.git
synced 2025-11-04 13:30:08 -05:00
pcm route: Fix the bad condition (always false)
This commit is contained in:
parent
99e57cb41a
commit
650b8c975c
1 changed files with 1 additions and 1 deletions
|
|
@ -1147,7 +1147,7 @@ static int _snd_pcm_route_load_ttable(snd_config_t *tt, snd_pcm_route_ttable_ent
|
||||||
snd_config_iterator_t j, jnext;
|
snd_config_iterator_t j, jnext;
|
||||||
long cchannel;
|
long cchannel;
|
||||||
const char *id;
|
const char *id;
|
||||||
if (!snd_config_get_id(in, &id) < 0)
|
if (snd_config_get_id(in, &id) < 0)
|
||||||
continue;
|
continue;
|
||||||
err = safe_strtol(id, &cchannel);
|
err = safe_strtol(id, &cchannel);
|
||||||
if (err < 0 ||
|
if (err < 0 ||
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue