mirror of
https://github.com/alsa-project/alsa-utils
synced 2024-11-09 17:05:41 +01:00
axfer/test: fix uninitialized warning
This commit fixes uninitialized return value from a call of test_mux() and
text_demux() to suppress warnings below:
$ make check
...
gcc -DHAVE_CONFIG_H -I. -I../../include -O2 -Wall -pipe -g -MT mapper-test.o -MD -MP -MF .deps/mapper-test.Tpo -c -o mapper-test.o mapper-test.c
mapper-test.c: In function ‘test_mapper’:
mapper-test.c:241:9: warning: ‘err’ may be used uninitialized in this function [-Wmaybe-uninitialized]
return err;
^~~
mapper-test.c:231:5: warning: ‘err’ may be used uninitialized in this function [-Wmaybe-uninitialized]
if (err < 0)
^
Fixes: 39d1ab8a0c
: ('axfer: add a unit test for mapper interface')
Signed-off-by: Takashi Sakamoto <o-takashi@sakamocchi.jp>
Signed-off-by: Jaroslav Kysela <perex@perex.cz>
This commit is contained in:
parent
0248c29757
commit
0b07c560f7
1 changed files with 2 additions and 2 deletions
|
@ -71,7 +71,7 @@ static int test_demux(struct mapper_trial *trial, snd_pcm_access_t access,
|
|||
unsigned int bytes_per_sample;
|
||||
uint64_t total_frame_count;
|
||||
int i;
|
||||
int err;
|
||||
int err = 0;
|
||||
|
||||
for (i = 0; i < cntr_count; ++i) {
|
||||
snd_pcm_format_t format;
|
||||
|
@ -163,7 +163,7 @@ static int test_mux(struct mapper_trial *trial, snd_pcm_access_t access,
|
|||
unsigned int bytes_per_sample;
|
||||
uint64_t total_frame_count;
|
||||
int i;
|
||||
int err;
|
||||
int err = 0;
|
||||
|
||||
for (i = 0; i < cntr_count; ++i) {
|
||||
snd_pcm_format_t format;
|
||||
|
|
Loading…
Reference in a new issue