From: Michael Jerris Date: Sat, 21 Nov 2009 01:37:09 +0000 (+0000) Subject: build tweak X-Git-Tag: v1.0.6~1314 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3d4cd9b1d5956be33ceb86613e8ddf66d5287d04;p=thirdparty%2Ffreeswitch.git build tweak git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@15588 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- diff --git a/src/switch_log.c b/src/switch_log.c index 86bb45de1b..fcafd060db 100644 --- a/src/switch_log.c +++ b/src/switch_log.c @@ -341,7 +341,7 @@ SWITCH_DECLARE(void) switch_log_vprintf(switch_text_channel_t channel, const cha #endif if (level > 100) { - if (level - 100 > runtime.debug_level) { + if ((uint32_t)(level - 100) > runtime.debug_level) { return; }