fix trivial comiler warning for last commit
This commit is contained in:
parent
bd471fc6a9
commit
e56cbeef41
|
@ -337,7 +337,7 @@ SWITCH_DECLARE(switch_status_t) switch_xml_config_parse_event(switch_event_t *ev
|
||||||
int32_t *dest = (int32_t *) ptr;
|
int32_t *dest = (int32_t *) ptr;
|
||||||
int index = (int) (intptr_t) item->data;
|
int index = (int) (intptr_t) item->data;
|
||||||
int8_t currentval = (int8_t) ! !(*dest & index);
|
int8_t currentval = (int8_t) ! !(*dest & index);
|
||||||
int8_t newval = 0;
|
int newval = 0;
|
||||||
|
|
||||||
if (value) {
|
if (value) {
|
||||||
newval = switch_true(value);
|
newval = switch_true(value);
|
||||||
|
|
Loading…
Reference in New Issue