diff options
author | XANTRONIX Development | 2022-02-01 20:44:07 -0500 |
---|---|---|
committer | XANTRONIX Development | 2022-02-01 20:44:07 -0500 |
commit | 6307ee45b3a942a254f61c20db5201982a78e9ac (patch) | |
tree | 4bce4c96955d0d76ff16f377356fcbf604dcfe59 | |
parent | ed62620b49728151d31c32bd5a1cbc26a4fd2a4a (diff) | |
download | xas-6307ee45b3a942a254f61c20db5201982a78e9ac.tar.gz xas-6307ee45b3a942a254f61c20db5201982a78e9ac.tar.bz2 xas-6307ee45b3a942a254f61c20db5201982a78e9ac.zip |
Fix typo in format specifier
-rw-r--r-- | src/vox.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) { |