differing const qualifiers.

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@4064 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Michael Jerris 2007-01-27 04:44:47 +00:00
parent f11f120a05
commit b6bcd30dff
1 changed files with 1 additions and 1 deletions

View File

@ -961,7 +961,7 @@ SWITCH_DECLARE(switch_xml_t) switch_xml_parse_file(const char *file)
if ((abs = strrchr(file, '/')) || (abs = strrchr(file, '\\'))) { if ((abs = strrchr(file, '/')) || (abs = strrchr(file, '\\'))) {
abs++; abs++;
} else { } else {
abs = file; abs = (char *)file;
} }
if (!(new_file = switch_mprintf("%s%s%s.fsxml", SWITCH_GLOBAL_dirs.log_dir, SWITCH_PATH_SEPARATOR, abs))) { if (!(new_file = switch_mprintf("%s%s%s.fsxml", SWITCH_GLOBAL_dirs.log_dir, SWITCH_PATH_SEPARATOR, abs))) {