mirror of
https://github.com/alsa-project/alsa-utils
synced 2024-11-09 17:25:42 +01:00
aplay: cosmetic code fix in xrun()
Signed-off-by: Jaroslav Kysela <perex@perex.cz>
This commit is contained in:
parent
2a49bdcdeb
commit
986a1bd3d2
1 changed files with 2 additions and 1 deletions
|
@ -1676,7 +1676,8 @@ static void xrun(void)
|
|||
prg_exit(EXIT_FAILURE);
|
||||
}
|
||||
return; /* ok, data should be accepted again */
|
||||
} if (snd_pcm_status_get_state(status) == SND_PCM_STATE_DRAINING) {
|
||||
}
|
||||
if (snd_pcm_status_get_state(status) == SND_PCM_STATE_DRAINING) {
|
||||
if (verbose) {
|
||||
fprintf(stderr, _("Status(DRAINING):\n"));
|
||||
snd_pcm_status_dump(status, log);
|
||||
|
|
Loading…
Reference in a new issue