From 6f1f9190bd050d8103df55ac9c89f0f2f53251fc Mon Sep 17 00:00:00 2001 From: Anthony Minessale Date: Wed, 14 Jun 2006 15:56:11 +0000 Subject: [PATCH] wordbreaks git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1622 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- src/mod/applications/mod_rss/mod_rss.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mod/applications/mod_rss/mod_rss.c b/src/mod/applications/mod_rss/mod_rss.c index 61825323a3..7e45ea906c 100644 --- a/src/mod/applications/mod_rss/mod_rss.c +++ b/src/mod/applications/mod_rss/mod_rss.c @@ -295,12 +295,12 @@ static void rss_function(switch_core_session_t *session, char *data) switch_core_speech_flush_tts(&sh); snprintf(buf + len, sizeof(buf) - len, "Main Menu. " - "Choose one of the following Feeds followed by the pound key or press 0 to exit. " + "Choose one of the following Feeds, followed by the pound key or press 0 to exit. " ""); len = (int32_t)strlen(buf); for (idx = 0; idx < feed_index; idx++) { - snprintf(buf + len, sizeof(buf) - len, "Feed Number %d %s. ", idx + 1, feed_names[idx]); + snprintf(buf + len, sizeof(buf) - len, "Feed Number %d: %s. ", idx + 1, feed_names[idx]); len = (int32_t)strlen(buf); }