Skip to content

Commit

Permalink
fix:speech/speech_dispacher:use spd_say instead of spd_sayf (#1176)
Browse files Browse the repository at this point in the history
  • Loading branch information
trldp committed Jan 12, 2022
1 parent 17f1a6e commit f93a8df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion navit/speech/speech_dispatcher/speech_speech_dispatcher.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit f93a8df

Please sign in to comment.