summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorXANTRONIX Development2022-02-01 20:44:07 -0500
committerXANTRONIX Development2022-02-01 20:44:07 -0500
commit6307ee45b3a942a254f61c20db5201982a78e9ac (patch)
tree4bce4c96955d0d76ff16f377356fcbf604dcfe59
parented62620b49728151d31c32bd5a1cbc26a4fd2a4a (diff)
downloadxas-6307ee45b3a942a254f61c20db5201982a78e9ac.tar.gz
xas-6307ee45b3a942a254f61c20db5201982a78e9ac.tar.bz2
xas-6307ee45b3a942a254f61c20db5201982a78e9ac.zip
Fix typo in format specifier
-rw-r--r--src/vox.c2
1 files changed, 1 insertions, 1 deletions
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) {