]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
tweak build warning
authorJeff Lenk <jeff@jefflenk.com>
Tue, 21 Sep 2010 16:22:16 +0000 (11:22 -0500)
committerJeff Lenk <jeff@jefflenk.com>
Tue, 21 Sep 2010 16:22:16 +0000 (11:22 -0500)
src/switch_loadable_module.c

index 8804902a2f96ae908791efa0ca533f68f3fafcdb..fc0db74f0fb3924124759f5f77567c7eeabdd958 100644 (file)
@@ -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;
                        }