]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
differing const qualifiers.
authorMichael Jerris <mike@jerris.com>
Sat, 27 Jan 2007 04:44:47 +0000 (04:44 +0000)
committerMichael Jerris <mike@jerris.com>
Sat, 27 Jan 2007 04:44:47 +0000 (04:44 +0000)
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@4064 d0543943-73ff-0310-b7d9-9358b9ac24b2

src/switch_xml.c

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