From: Jeff Lenk Date: Thu, 28 Apr 2011 19:39:24 +0000 (-0500) Subject: fix trivial comiler warning for last commit X-Git-Tag: v1.2-rc1~118^2~55 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e56cbeef414300a38c70043f8f3e5a6700739173;p=thirdparty%2Ffreeswitch.git fix trivial comiler warning for last commit --- diff --git a/src/switch_xml_config.c b/src/switch_xml_config.c index 5ade057b37..31f44ce175 100644 --- a/src/switch_xml_config.c +++ b/src/switch_xml_config.c @@ -337,7 +337,7 @@ SWITCH_DECLARE(switch_status_t) switch_xml_config_parse_event(switch_event_t *ev int32_t *dest = (int32_t *) ptr; int index = (int) (intptr_t) item->data; int8_t currentval = (int8_t) ! !(*dest & index); - int8_t newval = 0; + int newval = 0; if (value) { newval = switch_true(value);