From 9b85bf94611851fe8bda6527d613876d31ab8ba4 Mon Sep 17 00:00:00 2001 From: Michael Jerris Date: Tue, 17 Nov 2009 20:09:25 +0000 Subject: [PATCH] mod_say_it: fix hundred pronunciation (MODAPP-367) git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@15500 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- src/mod/say/mod_say_it/mod_say_it.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/mod/say/mod_say_it/mod_say_it.c b/src/mod/say/mod_say_it/mod_say_it.c index 0da14a1780..831b096a6f 100644 --- a/src/mod/say/mod_say_it/mod_say_it.c +++ b/src/mod/say/mod_say_it/mod_say_it.c @@ -95,9 +95,9 @@ static switch_status_t play_group(switch_say_method_t method, int a, int b, int { if (a) { - if (a != 1) { - say_file("digits/%d.wav", a); - } + if (a != 1) { + say_file("digits/%d.wav", a); + } say_file("digits/hundred.wav"); }