summaryrefslogtreecommitdiff
path: root/src/pcm.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/pcm.c')
-rw-r--r--src/pcm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pcm.c b/src/pcm.c
index 09134c5..9c2f763 100644
--- a/src/pcm.c
+++ b/src/pcm.c
@@ -130,7 +130,7 @@ sndio_mode(int mode)
switch (mode) {
case SND_PCM_NONBLOCK: WARNX1("SND_PCM_NONBLOCK"); return true;
// ASYNC: SIGIO will be emitted whenever a period has been completely processed by the soundcard.
- case SND_PCM_ASYNC: ERRX1(EXIT_FAILURE, "SND_PCM_ASYNC is not supported");
+ case SND_PCM_ASYNC: WARNX1("SND_PCM_ASYNC is not supported"); return false;
}
return false;
}