mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-08-13 17:38:59 +00:00
Lots of trivial tweaks to minimize compiler warnings, especially on 64-bit platform: Added missing type casts, changed types, added missing NULL checks.
This commit is contained in:
@@ -101,7 +101,7 @@ SWITCH_DECLARE(switch_status_t) switch_xml_config_parse(switch_xml_t xml, switch
|
||||
{
|
||||
switch_event_t *event = NULL;
|
||||
switch_status_t result;
|
||||
int count = switch_event_import_xml(xml, "name", "value", &event);
|
||||
int count = (int)switch_event_import_xml(xml, "name", "value", &event);
|
||||
|
||||
result = switch_xml_config_parse_event(event, count, reload, instructions);
|
||||
|
||||
|
Reference in New Issue
Block a user