From 6307ee45b3a942a254f61c20db5201982a78e9ac Mon Sep 17 00:00:00 2001 From: XANTRONIX Development Date: Tue, 1 Feb 2022 20:44:07 -0500 Subject: Fix typo in format specifier --- src/vox.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/vox.c b/src/vox.c index 63a1d97..6c4551e 100644 --- a/src/vox.c +++ b/src/vox.c @@ -268,7 +268,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, "%\n", message); + return xas_vox_sayf(vox, "%s\n", message); } xas_audio_stream *xas_vox_stream_new(xas_vox *vox) { -- cgit v1.2.3