From dce70ad2853d45489c3fdb0c1dd90cb0fbb58f4d Mon Sep 17 00:00:00 2001 From: XANTRONIX Development Date: Mon, 28 Feb 2022 15:51:58 -0500 Subject: Add implicit newline in xas_vox_say() --- src/vox.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vox.c b/src/vox.c index 9f6382e..03ef796 100644 --- a/src/vox.c +++ b/src/vox.c @@ -479,7 +479,7 @@ int xas_vox_sayf(xas_vox *vox, const char *format, ...) { } int xas_vox_say(xas_vox *vox, const char *message) { - return xas_vox_sayf(vox, "%s", message); + return xas_vox_sayf(vox, "%s\n", message); } xas_audio_stream *xas_vox_stream_new(xas_vox *vox) { -- cgit v1.2.3