aboutsummaryrefslogtreecommitdiffstats
path: root/xmlcatalog.c
diff options
context:
space:
mode:
Diffstat (limited to 'xmlcatalog.c')
-rw-r--r--xmlcatalog.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/xmlcatalog.c b/xmlcatalog.c
index 44c8e633..6e614ced 100644
--- a/xmlcatalog.c
+++ b/xmlcatalog.c
@@ -29,7 +29,7 @@
#include <libxml/parser.h>
#include <libxml/globals.h>
-#ifdef LIBXML_CATALOG_ENABLED
+#if defined(LIBXML_CATALOG_ENABLED) && defined(LIBXML_OUTPUT_ENABLED)
static int shell = 0;
static int sgml = 0;
static int noout = 0;
@@ -580,8 +580,8 @@ int main(int argc, char **argv) {
return(exit_value);
}
#else
-int main(int argc, char **argv) {
- fprintf(stderr, "libxml was not compiled with catalog support\n");
+int main(int argc ATTRIBUTE_UNUSED, char **argv ATTRIBUTE_UNUSED) {
+ fprintf(stderr, "libxml was not compiled with catalog and output support\n");
return(1);
}
#endif