From: Jeff Lenk Date: Tue, 21 Sep 2010 16:22:16 +0000 (-0500) Subject: tweak build warning X-Git-Tag: v1.2-rc1~291^2~40^2~80 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4ea1595481b5bba91352c5f94d4c08f65cb31b96;p=thirdparty%2Ffreeswitch.git tweak build warning --- diff --git a/src/switch_loadable_module.c b/src/switch_loadable_module.c index 8804902a2f..fc0db74f0f 100644 --- a/src/switch_loadable_module.c +++ b/src/switch_loadable_module.c @@ -1566,7 +1566,7 @@ SWITCH_DECLARE(int) switch_loadable_module_get_codecs(const switch_codec_impleme continue; } - if (imp->microseconds_per_packet / 1000 == default_ptime) { + if (imp->microseconds_per_packet / 1000 == (int)default_ptime) { array[i++] = imp; goto found; }