diff options
| author | Daniel Veillard <veillard@src.gnome.org> | 2001-08-16 23:26:59 +0000 |
|---|---|---|
| committer | Daniel Veillard <veillard@src.gnome.org> | 2001-08-16 23:26:59 +0000 |
| commit | bb3712974baaaf0100307628ed42f37fa4b7f85c (patch) | |
| tree | ac5deb747511cdbb6025ea1b2d59fb1a70685fc2 /HTMLtree.c | |
| parent | b60c54e870ff88cd29b5e4273d2691e0ac800826 (diff) | |
| download | android_external_libxml2-bb3712974baaaf0100307628ed42f37fa4b7f85c.tar.gz android_external_libxml2-bb3712974baaaf0100307628ed42f37fa4b7f85c.tar.bz2 android_external_libxml2-bb3712974baaaf0100307628ed42f37fa4b7f85c.zip | |
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
Diffstat (limited to 'HTMLtree.c')
| -rw-r--r-- | HTMLtree.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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, |
