From 9a5688747689d0b3b9abc59f7c49fd04d2f1da2a Mon Sep 17 00:00:00 2001 From: Anthony Minessale Date: Thu, 8 Mar 2007 00:04:04 +0000 Subject: [PATCH] earier patch to hide warning in cepstral does more bad than good so I guess the error is better git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@4475 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- src/mod/asr_tts/mod_cepstral/mod_cepstral.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mod/asr_tts/mod_cepstral/mod_cepstral.c b/src/mod/asr_tts/mod_cepstral/mod_cepstral.c index 16624a2455..6d21d665e0 100644 --- a/src/mod/asr_tts/mod_cepstral/mod_cepstral.c +++ b/src/mod/asr_tts/mod_cepstral/mod_cepstral.c @@ -223,7 +223,7 @@ static switch_status_t cepstral_speech_feed_tts(switch_speech_handle_t *sh, char return SWITCH_STATUS_FALSE; } - if ((to_say = switch_mprintf(". %s ", text))) { + if ((to_say = switch_mprintf(" %s ", text))) { swift_port_speak_text(cepstral->port, to_say, 0, NULL, &cepstral->tts_stream, NULL); switch_safe_free(to_say); }