aboutsummaryrefslogtreecommitdiffstats
path: root/catalog.c
diff options
context:
space:
mode:
authorDaniel Veillard <veillard@src.gnome.org>2001-10-17 15:58:35 +0000
committerDaniel Veillard <veillard@src.gnome.org>2001-10-17 15:58:35 +0000
commit3c01b1d81b696fe8624b6d7e26ec0ebffcc7c06b (patch)
treec6c072df9035dc652fb2f20c87aef0cfdcb3af74 /catalog.c
parent7cc95c0b6afdd34cd570c461e71cf696ea19271d (diff)
downloadandroid_external_libxml2-3c01b1d81b696fe8624b6d7e26ec0ebffcc7c06b.tar.gz
android_external_libxml2-3c01b1d81b696fe8624b6d7e26ec0ebffcc7c06b.tar.bz2
android_external_libxml2-3c01b1d81b696fe8624b6d7e26ec0ebffcc7c06b.zip
- include/libxml/globals.h include/libxml/threads.h threads.c
testThreads.c: far more testing, cleaning up bugs - *.c : make sure globals.h is always included. Daniel
Diffstat (limited to 'catalog.c')
-rw-r--r--catalog.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/catalog.c b/catalog.c
index 287d4aa7..40e91a57 100644
--- a/catalog.c
+++ b/catalog.c
@@ -38,6 +38,7 @@
#include <libxml/catalog.h>
#include <libxml/xmlerror.h>
#include <libxml/threads.h>
+#include <libxml/globals.h>
#define MAX_DELEGATE 50
@@ -1217,7 +1218,7 @@ xmlParseXMLCatalogFile(xmlCatalogPrefer prefer, const xmlChar *filename) {
if (xmlDebugCatalogs)
xmlGenericError(xmlGenericErrorContext,
- "Parsing catalog %s\n", filename);
+ "%d Parsing catalog %s\n", xmlGetThreadId(), filename);
cur = xmlDocGetRootElement(doc);
if ((cur != NULL) && (xmlStrEqual(cur->name, BAD_CAST "catalog")) &&