Revert changes to xmlparse.[ch]

These files are copies from libexpat and should not be touched.
Thanks to Mathias for pointing this one out.
This commit is contained in:
Torsten Dreyer 2011-12-26 11:40:57 +01:00
parent 306c58e7ed
commit 3d44f1c825
2 changed files with 2 additions and 2 deletions

View File

@ -911,7 +911,7 @@ void XML_DefaultCurrent(XML_Parser parser)
}
}
const XML_LChar *XML_ErrorString(size_t code)
const XML_LChar *XML_ErrorString(int code)
{
static const XML_LChar *message[] = {
0,

View File

@ -473,7 +473,7 @@ void XMLPARSEAPI
XML_ParserFree(XML_Parser parser);
/* Returns a string describing the error. */
const XML_LChar XMLPARSEAPI *XML_ErrorString(size_t code);
const XML_LChar XMLPARSEAPI *XML_ErrorString(int code);
#ifdef __cplusplus
}