aboutsummaryrefslogtreecommitdiffstats
path: root/xmlmemory.c
diff options
context:
space:
mode:
authorDaniel Veillard <veillard@src.gnome.org>2001-11-22 18:20:37 +0000
committerDaniel Veillard <veillard@src.gnome.org>2001-11-22 18:20:37 +0000
commitcd337f0bc6282ea16ed6940330a41968286c2fa9 (patch)
tree9ec3e8c8c39c5637769a78439978d7fed9345fc9 /xmlmemory.c
parent566d4dfac3ff5f7b235738f6f63bd369533874bf (diff)
downloadandroid_external_libxml2-cd337f0bc6282ea16ed6940330a41968286c2fa9.tar.gz
android_external_libxml2-cd337f0bc6282ea16ed6940330a41968286c2fa9.tar.bz2
android_external_libxml2-cd337f0bc6282ea16ed6940330a41968286c2fa9.zip
some cleanups when chasing unappropriate stdout output. Daniel
* debugXML.c tree.c xmlIO.c xmlmemory.c: some cleanups when chasing unappropriate stdout output. Daniel
Diffstat (limited to 'xmlmemory.c')
-rw-r--r--xmlmemory.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/xmlmemory.c b/xmlmemory.c
index aa82c4ec..e5115702 100644
--- a/xmlmemory.c
+++ b/xmlmemory.c
@@ -642,7 +642,8 @@ xmlMemoryDump(void)
FILE *dump;
dump = fopen(".memdump", "w");
- if (dump == NULL) xmlMemoryDumpFile = stdout;
+ if (dump == NULL)
+ xmlMemoryDumpFile = stderr;
else xmlMemoryDumpFile = dump;
xmlMemDisplay(xmlMemoryDumpFile);