summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortrldp <12382262+trldp@users.noreply.github.com>2022-01-12 07:05:57 +0100
committerGitHub <noreply@github.com>2022-01-12 07:05:57 +0100
commitf93a8df9c0f7967a40b12293873da6d5b53c1133 (patch)
tree13ddd274b1bf922d711dab592911ebef78660f49
parent17f1a6ec6aebbc51a67be6ac6064d231ce02a62e (diff)
downloadnavit-f93a8df9c0f7967a40b12293873da6d5b53c1133.tar.gz
fix:speech/speech_dispacher:use spd_say instead of spd_sayf (#1176)
-rw-r--r--navit/speech/speech_dispatcher/speech_speech_dispatcher.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/navit/speech/speech_dispatcher/speech_speech_dispatcher.c b/navit/speech/speech_dispatcher/speech_speech_dispatcher.c
index c7b38a26d..81bf44a5d 100644
--- a/navit/speech/speech_dispatcher/speech_speech_dispatcher.c
+++ b/navit/speech/speech_dispatcher/speech_speech_dispatcher.c
@@ -38,7 +38,7 @@ struct speech_priv {
static int speechd_say(struct speech_priv *this, const char *text) {
int err;
- err = spd_sayf(this->conn, SPD_MESSAGE, text);
+ err = spd_say(this->conn, SPD_MESSAGE, text);
if (err != 1)
return 1;
return 0;