aboutsummaryrefslogtreecommitdiffstats
path: root/debugXML.c
diff options
context:
space:
mode:
authorDaniel Veillard <veillard@src.gnome.org>2002-03-13 10:03:35 +0000
committerDaniel Veillard <veillard@src.gnome.org>2002-03-13 10:03:35 +0000
commit75be0130855fe02d238bbbf19a04d3c5eb45f494 (patch)
tree942c7b28d515e4bc8b3829689342132bf0024dff /debugXML.c
parent61f261749f44d6e6f938441598bc724cd1375c51 (diff)
downloadandroid_external_libxml2-75be0130855fe02d238bbbf19a04d3c5eb45f494.tar.gz
android_external_libxml2-75be0130855fe02d238bbbf19a04d3c5eb45f494.tar.bz2
android_external_libxml2-75be0130855fe02d238bbbf19a04d3c5eb45f494.zip
speedup some node selection operations, this can have a significant impact
* xpath.c: speedup some node selection operations, this can have a significant impact on DocBook Norm's stylesheets * nanohttp.c: someone reported that SOCKLEN_T may not be defined make sure it's always the case * debugXML.c: distinguish CDATA and comments in ls operations 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 cba27f31..df50f66c 100644
--- a/debugXML.c
+++ b/debugXML.c
@@ -1148,7 +1148,7 @@ xmlLsOneNode(FILE *output, xmlNodePtr node) {
fprintf(output, "t");
break;
case XML_CDATA_SECTION_NODE:
- fprintf(output, "c");
+ fprintf(output, "C");
break;
case XML_ENTITY_REF_NODE:
fprintf(output, "e");