Make xmlRecoverDoc const (Martin Trappel)

* include/libxml/parser.h parser.c: just make the parameter a const
This commit is contained in:
Daniel Veillard 2009-08-20 19:15:08 +02:00
parent 2f522dc68f
commit f39eafaa90
2 changed files with 2 additions and 2 deletions

View File

@ -850,7 +850,7 @@ XMLPUBFUN int XMLCALL
* Recovery mode
*/
XMLPUBFUN xmlDocPtr XMLCALL
xmlRecoverDoc (xmlChar *cur);
xmlRecoverDoc (const xmlChar *cur);
XMLPUBFUN xmlDocPtr XMLCALL
xmlRecoverMemory (const char *buffer,
int size);

View File

@ -13406,7 +13406,7 @@ xmlSAXParseFile(xmlSAXHandlerPtr sax, const char *filename,
*/
xmlDocPtr
xmlRecoverDoc(xmlChar *cur) {
xmlRecoverDoc(const xmlChar *cur) {
return(xmlSAXParseDoc(NULL, cur, 1));
}