summaryrefslogtreecommitdiff
path: root/catalog.c
diff options
context:
space:
mode:
authorDaniel Veillard <veillard@src.gnome.org>2004-05-16 01:20:17 +0000
committerDaniel Veillard <veillard@src.gnome.org>2004-05-16 01:20:17 +0000
commitf05529365346fcaf3afe1a07e5c4ca7350cb2521 (patch)
treee5c9831e854a058395401ae51f9a9e7d4ca1f3b8 /catalog.c
parent96134cab15b917683b0c4d8d071aae8a48cb8d98 (diff)
downloadlibxml2-f05529365346fcaf3afe1a07e5c4ca7350cb2521.tar.gz
a couple of large static variable which should really not be declared as
* catalog.c: a couple of large static variable which should really not be declared as such cluttered the .bss section. Daniel
Diffstat (limited to 'catalog.c')
-rw-r--r--catalog.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/catalog.c b/catalog.c
index 711761e7..7c328f2a 100644
--- a/catalog.c
+++ b/catalog.c
@@ -3510,7 +3510,7 @@ xmlCatalogLocalResolveURI(void *catalogs, const xmlChar *URI) {
const xmlChar *
xmlCatalogGetSystem(const xmlChar *sysID) {
xmlChar *ret;
- static xmlChar result[1000];
+ xmlChar result[1000];
static int msg = 0;
if (!xmlCatalogInitialized)
@@ -3554,7 +3554,7 @@ xmlCatalogGetSystem(const xmlChar *sysID) {
const xmlChar *
xmlCatalogGetPublic(const xmlChar *pubID) {
xmlChar *ret;
- static xmlChar result[1000];
+ xmlChar result[1000];
static int msg = 0;
if (!xmlCatalogInitialized)