fix build err

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@10016 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Anthony Minessale
2008-10-14 19:46:47 +00:00
parent aac2fb84ad
commit d192f195b3
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -121,8 +121,8 @@ static switch_status_t load_config(void)
if ((settings = switch_xml_child(cfg, "settings"))) {
for (param = switch_xml_child(settings, "param"); param; param = param->next) {
char *var = (char *) switch_xml_attr_soft(param, "name");
char *val = (char *) switch_xml_attr_soft(param, "value");
const char *var = switch_xml_attr_soft(param, "name");
const char *val = switch_xml_attr_soft(param, "value");
if (!strcasecmp(var, "default-root")) {
set_global_root(val);
} else if (!strcasecmp(var, "auto-reload")) {