1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2025-07-13 09:01:53 +03:00

trying to fix some troubles w.r.t. function returning const xxxPtr. Daniel

* HTMLparser.c HTMLtree.c include/libxml/HTMLparser.h:
  trying to fix some troubles w.r.t. function returning
  const xxxPtr.
Daniel
This commit is contained in:
Daniel Veillard
2001-08-16 23:26:59 +00:00
parent b60c54e870
commit bb3712974b
4 changed files with 24 additions and 18 deletions

View File

@ -433,7 +433,7 @@ htmlNodeListDump(xmlBufferPtr buf, xmlDocPtr doc, xmlNodePtr cur, int format) {
void
htmlNodeDumpFormat(xmlBufferPtr buf, xmlDocPtr doc, xmlNodePtr cur,
int format) {
htmlElemDescPtr info;
const htmlElemDesc * info;
if (cur == NULL) {
xmlGenericError(xmlGenericErrorContext,
@ -931,7 +931,7 @@ htmlNodeListDumpOutput(xmlOutputBufferPtr buf, xmlDocPtr doc,
void
htmlNodeDumpFormatOutput(xmlOutputBufferPtr buf, xmlDocPtr doc,
xmlNodePtr cur, const char *encoding, int format) {
htmlElemDescPtr info;
const htmlElemDesc * info;
if (cur == NULL) {
xmlGenericError(xmlGenericErrorContext,