1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2025-07-29 11:41:22 +03:00

- testSAX.c: fixed problem with cdata reporting

- SAXresult/* : updated
Daniel
This commit is contained in:
Daniel Veillard
2000-10-15 10:06:55 +00:00
parent 1e851392fc
commit 399156223f
33 changed files with 177 additions and 60 deletions

View File

@ -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);
}