summaryrefslogtreecommitdiff
path: root/debugXML.c
diff options
context:
space:
mode:
authorDaniel Veillard <veillard@src.gnome.org>2001-10-11 22:55:55 +0000
committerDaniel Veillard <veillard@src.gnome.org>2001-10-11 22:55:55 +0000
commitb44025c72b7472971a061b022cfe422adc42715d (patch)
tree8286242ccaba46dbede84aa092cce816cbc1f5aa /debugXML.c
parent75b96824bccaeadd9e71eba9be7fab1bd88ac814 (diff)
downloadlibxml2-b44025c72b7472971a061b022cfe422adc42715d.tar.gz
started integrating the non-controversial parts of Gary Pennington
* HTMLtree.c catalog.c debugXML.c entities.c nanoftp.c parser.c valid.c xmlmemory.c xpath.c xpointer.c: started integrating the non-controversial parts of Gary Pennington multithread patches * catalog.c: corrected a small bug introduced Daniel
Diffstat (limited to 'debugXML.c')
-rw-r--r--debugXML.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/debugXML.c b/debugXML.c
index 6c7d9a40..dbdd1f37 100644
--- a/debugXML.c
+++ b/debugXML.c
@@ -567,7 +567,7 @@ xmlDebugDumpOneNode(FILE * output, xmlNodePtr node, int depth)
break;
case XML_TEXT_NODE:
fprintf(output, shift);
- if (node->name == xmlStringTextNoenc)
+ if (node->name == (const xmlChar *) xmlStringTextNoenc)
fprintf(output, "TEXT no enc\n");
else
fprintf(output, "TEXT\n");