From: Anthony Minessale Date: Thu, 30 Aug 2007 15:28:32 +0000 (+0000) Subject: fix warning X-Git-Tag: v1.0-beta2~666 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ad1bd7bf6124505a32ad47707df378f747000b4c;p=thirdparty%2Ffreeswitch.git fix warning git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@5681 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- diff --git a/src/mod/say/mod_say_en/mod_say_en.c b/src/mod/say/mod_say_en/mod_say_en.c index 639b840b72..5bd346ce6f 100644 --- a/src/mod/say/mod_say_en/mod_say_en.c +++ b/src/mod/say/mod_say_en/mod_say_en.c @@ -156,7 +156,8 @@ static switch_status_t en_say_general_count(switch_core_session_t *session, { switch_channel_t *channel; int in; - int x = 0, places[9] = { 0 }; + uint32_t x = 0; + int places[9] = { 0 }; char sbuf[13] = ""; switch_status_t status;