aplay: fix pcm_read() return value

Because of the way the pcm_read() functions are currently used, returning
rcount or result is equivalent but I feel it is more accurate to
return 'result'.

Signed-off-by: Olivier Langlois <olivier@trillion01.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
This commit is contained in:
Olivier Langlois 2014-01-07 23:18:17 -05:00 committed by Takashi Iwai
parent f4be3f88b6
commit 8aa13eec80

View file

@ -2039,7 +2039,7 @@ static ssize_t pcm_read(u_char *data, size_t rcount)
data += r * bits_per_frame / 8;
}
}
return rcount;
return result;
}
static ssize_t pcm_readv(u_char **data, unsigned int channels, size_t rcount)
@ -2084,7 +2084,7 @@ static ssize_t pcm_readv(u_char **data, unsigned int channels, size_t rcount)
count -= r;
}
}
return rcount;
return result;
}
/*