From 6b6c91e9934075eb8e8b8766ba4dcb84f2654dd7 Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Wed, 27 Dec 2023 16:05:24 +0900 Subject: [PATCH] [alsa] Fix a missing \n in a message I guess I had thought it was Sys_Error instead of Sys_Printf (or maybe I changed it). --- libs/audio/targets/snd_alsa.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/audio/targets/snd_alsa.c b/libs/audio/targets/snd_alsa.c index 8c55c6005..159cd7685 100644 --- a/libs/audio/targets/snd_alsa.c +++ b/libs/audio/targets/snd_alsa.c @@ -651,7 +651,7 @@ SNDDMA_Init (snd_t *snd) if ((res = qfsnd_async_add_pcm_handler (&async_handler, pcm, alsa_callback, snd)) < 0) { - Sys_Printf ("snd_alsa: unable to register async handler: %s", + Sys_Printf ("snd_alsa: unable to register async handler: %s\n", qfsnd_strerror (res)); goto error; }