extras/XMLParser: fix warning.
authorRejean Loyer <redj@ecere.com>
Thu, 19 Jun 2014 15:46:54 +0000 (11:46 -0400)
committerRejean Loyer <redj@ecere.com>
Mon, 16 Mar 2015 05:31:35 +0000 (01:31 -0400)
extras/XMLParser.ec

index ac93896..1f2b22a 100644 (file)
@@ -263,7 +263,7 @@ class XMLParser
          {
             if(ch == '<' || charLen == CHARBUFSIZE - 1)
             {
-               ProcessCharacterData(characterData);
+               ProcessCharacterData((char*)characterData);
                charLen = 0;
             }
             if(ch == '<')