[Expat-checkins] expat/lib xmlparse.c,1.136,1.137

Karl Waclawek kwaclaw at users.sourceforge.net
Tue Aug 10 20:04:38 CEST 2004


Update of /cvsroot/expat/expat/lib
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29136

Modified Files:
	xmlparse.c 
Log Message:
Fixed type error that came to light when compiling as C++ file.

Index: xmlparse.c
===================================================================
RCS file: /cvsroot/expat/expat/lib/xmlparse.c,v
retrieving revision 1.136
retrieving revision 1.137
diff -u -d -r1.136 -r1.137
--- xmlparse.c	23 Jul 2004 02:02:41 -0000	1.136
+++ xmlparse.c	10 Aug 2004 18:04:34 -0000	1.137
@@ -1539,7 +1539,7 @@
 XML_ParseBuffer(XML_Parser parser, int len, int isFinal)
 {
   const char *start;
-  enum XML_Error result = XML_STATUS_OK;
+  enum XML_Status result = XML_STATUS_OK;
 
   switch (parsing) {
   case XML_SUSPENDED:
@@ -1698,7 +1698,7 @@
 enum XML_Status XMLCALL
 XML_ResumeParser(XML_Parser parser)
 {
-  enum XML_Error result = XML_STATUS_OK;
+  enum XML_Status result = XML_STATUS_OK;
 
   if (parsing != XML_SUSPENDED) {
     errorCode = XML_ERROR_NOT_SUSPENDED;



More information about the Expat-checkins mailing list