aboutsummaryrefslogtreecommitdiffstats
path: root/testSAX.c
diff options
context:
space:
mode:
authorDaniel Veillard <veillard@src.gnome.org>2000-10-15 10:06:55 +0000
committerDaniel Veillard <veillard@src.gnome.org>2000-10-15 10:06:55 +0000
commit399156223f12cdb6d67e12a41e8fd080208a8906 (patch)
tree3ba0c2e69181f58a4de9ac1339df1c1db842af0c /testSAX.c
parent1e851392fcb02aad88605a0dd99c27654bc637b7 (diff)
downloadandroid_external_libxml2-399156223f12cdb6d67e12a41e8fd080208a8906.tar.gz
android_external_libxml2-399156223f12cdb6d67e12a41e8fd080208a8906.tar.bz2
android_external_libxml2-399156223f12cdb6d67e12a41e8fd080208a8906.zip
- testSAX.c: fixed problem with cdata reporting
- SAXresult/* : updated Daniel
Diffstat (limited to 'testSAX.c')
-rw-r--r--testSAX.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/testSAX.c b/testSAX.c
index b4f5512f..444ae7a2 100644
--- a/testSAX.c
+++ b/testSAX.c
@@ -476,7 +476,7 @@ processingInstructionDebug(void *ctx, const xmlChar *target,
void
cdataBlockDebug(void *ctx, const xmlChar *value, int len)
{
- fprintf(stderr, "SAX.pcdata(%.20s, %d)\n",
+ fprintf(stdout, "SAX.pcdata(%.20s, %d)\n",
(char *) value, len);
}