From 3d4cd9b1d5956be33ceb86613e8ddf66d5287d04 Mon Sep 17 00:00:00 2001 From: Michael Jerris Date: Sat, 21 Nov 2009 01:37:09 +0000 Subject: [PATCH] build tweak git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@15588 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- src/switch_log.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; }