From 51e84b626dc38c89d537b750948cc76bd4932e8e Mon Sep 17 00:00:00 2001 From: Jari Vetoniemi Date: Thu, 1 Nov 2018 12:03:26 +0200 Subject: s/ERRX/WARNX/g --- src/pcm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- cgit v1.2.3