]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
cleanup
authorBrian West <brian@freeswitch.org>
Mon, 15 Oct 2007 21:43:12 +0000 (21:43 +0000)
committerBrian West <brian@freeswitch.org>
Mon, 15 Oct 2007 21:43:12 +0000 (21:43 +0000)
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@5882 d0543943-73ff-0310-b7d9-9358b9ac24b2

src/mod/say/mod_say_en/mod_say_en.c

index 3ff8bbf690cbff6aa0d598228be0cfd85c59bd50..10c0d57ebbce4afae6ce81c8443db4e018eb72b5 100644 (file)
@@ -307,7 +307,7 @@ static switch_status_t en_say_time(switch_core_session_t *session, char *tosay,
                if (hours) {
                        say_num(hours, SSM_PRONOUNCED);
                        if (hours == 1) {
-                               say_file("time/hour.wav");      //TODO -- NEED TO GET "hour.wav" recorded
+                               say_file("time/hour.wav");
                        } else {
                                say_file("time/hours.wav");
                        }
@@ -407,7 +407,7 @@ static switch_status_t en_say_money(switch_core_session_t *session, char *tosay,
 {
        switch_channel_t *channel;
 
-       char sbuf[16] = "";                     /* enuough for 999,999,999,999.99 (w/o the commas or leading $) */
+       char sbuf[16] = "";                     /* enough for 999,999,999,999.99 (w/o the commas or leading $) */
        char *dollars = NULL;
        char *cents = NULL;