From 2d3cd8203afb491a6bd5f242a886e98ffc7ee0bb Mon Sep 17 00:00:00 2001 From: Simon Warta Date: Fri, 6 Jun 2014 13:56:28 +0200 Subject: [PATCH] Fix result enum type XML_Error -> XML_Status Code did not compile on linux64 --- XML/src/xmlparse.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/XML/src/xmlparse.cpp b/XML/src/xmlparse.cpp index 827a48c6f..0d7e1ffc6 100644 --- a/XML/src/xmlparse.cpp +++ b/XML/src/xmlparse.cpp @@ -1557,7 +1557,7 @@ XML_Parse(XML_Parser parser, const char *s, int len, int isFinal) else if (bufferPtr == bufferEnd) { const char *end; int nLeftOver; - enum XML_Error result; + enum XML_Status result; parseEndByteIndex += len; positionPtr = s; ps_finalBuffer = (XML_Bool)isFinal;