Minor enhancements to eliminate compile/test warnings
authorWilliam M. Brack <wbrack@src.gnome.org>
Wed, 5 Nov 2003 03:16:46 +0000 (03:16 +0000)
committerWilliam M. Brack <wbrack@src.gnome.org>
Wed, 5 Nov 2003 03:16:46 +0000 (03:16 +0000)
* libxslt/xsltconfig.h.in, libexstl/exsltconfig.h.in:
  changed macro ATTRIBUTE_UNUSED for gcc so that, if undefined,
  it's defined as __attribute__((unused))
* python/libxslt.c: fixed ATTRIBUTE_UNUSED to appear after
  variable declaration
* libxslt/preproc.c: minor change to get rid of unused var/code

ChangeLog
libexslt/exsltconfig.h.in
libxslt/preproc.c
libxslt/xsltconfig.h.in
python/libxslt.c

index 2d105ef..07b292a 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,13 @@
+Tue Nov  4 19:08:53 PST 2003 William Brack <wbrack@mmm.com.hk>
+
+       Minor enhancements to eliminate compile/test warnings
+       * libxslt/xsltconfig.h.in, libexstl/exsltconfig.h.in:
+         changed macro ATTRIBUTE_UNUSED for gcc so that, if undefined,
+         it's defined as __attribute__((unused))
+       * python/libxslt.c: fixed ATTRIBUTE_UNUSED to appear after
+         variable declaration
+       * libxslt/preproc.c: minor change to get rid of unused var/code
+         
 Tue Nov  4 14:21:06 CET 2003 Daniel Veillard <daniel@veillard.com>
 
        * doc/* NEWS: preparing release 1.1.0
index 462487d..962425c 100644 (file)
@@ -44,7 +44,7 @@ extern "C" {
 #include <ansidecl.h>
 #endif
 #ifndef ATTRIBUTE_UNUSED
-#define ATTRIBUTE_UNUSED
+#define ATTRIBUTE_UNUSED __attribute__((unused))
 #endif
 #else
 #define ATTRIBUTE_UNUSED
index 63f7f7a..50d662b 100644 (file)
@@ -204,7 +204,6 @@ xsltDocumentComp(xsltStylesheetPtr style, xmlNodePtr inst,
                 xsltTransformFunction function ATTRIBUTE_UNUSED) {
     xsltStylePreCompPtr comp;
     xmlChar *filename = NULL;
-    xmlChar *URL = NULL;
 
     comp = xsltNewStylePreComp(style, XSLT_FUNC_DOCUMENT);
     if (comp == NULL)
@@ -250,12 +249,7 @@ xsltDocumentComp(xsltStylesheetPtr style, xmlNodePtr inst,
     if (!comp->has_filename) {
        goto error;
     }
-
-    if (filename != NULL) {
-       comp->filename = filename;
-    } else {
-       comp->filename = NULL;
-    }
+    comp->filename = filename;
 
 error:
     return ((xsltElemPreCompPtr) comp);
index 00ce654..9815638 100644 (file)
@@ -105,7 +105,7 @@ extern "C" {
 #include <ansidecl.h>
 #endif
 #ifndef ATTRIBUTE_UNUSED
-#define ATTRIBUTE_UNUSED
+#define ATTRIBUTE_UNUSED __attribute__((unused))
 #endif
 #else
 #define ATTRIBUTE_UNUSED
index e5a852d..78b4607 100644 (file)
@@ -1,5 +1,5 @@
 /*
* libxslt.c: this modules implements the main part of the glue of the
+  libxslt.c: this modules implements the main part of the glue of the
  *           libxslt library and the Python interpreter. It provides the
  *           entry points where an automatically generated stub is either
  *           unpractical or would not match cleanly the Python model.
@@ -195,7 +195,7 @@ libxslt_xsltElementPreCompCallback(xsltStylesheetPtr style, xmlNodePtr inst,
        return (NULL);
     }
 
-    args = Py_BuildValue("(OOO)", 
+    args = Py_BuildValue((char *)"(OOO)", 
            libxslt_xsltStylesheetPtrWrap(style),
            libxml_xmlNodePtrWrap(inst),
            pyobj_element_f);
@@ -252,7 +252,7 @@ libxslt_xsltElementTransformCallback(xsltTransformContextPtr ctxt,
        return;
     }
 
-    args = Py_BuildValue("OOOO",
+    args = Py_BuildValue((char *)"OOOO",
        libxslt_xsltTransformContextPtrWrap(ctxt),
        libxml_xmlNodePtrWrap(node),
        libxml_xmlNodePtrWrap(inst),
@@ -503,7 +503,7 @@ libxslt_xsltApplyStylesheet(PyObject *self ATTRIBUTE_UNUSED, PyObject *args) {
 }
 
 PyObject *
-libxslt_xsltSaveResultToString(PyObject *self, PyObject *args) {
+libxslt_xsltSaveResultToString(PyObject *self ATTRIBUTE_UNUSED, PyObject *args) {
     PyObject *py_retval;        /* our final return value, a python string   */ 
     xmlChar  *buffer;
     int       size    = 0;
@@ -554,7 +554,7 @@ static PyObject *libxslt_xsltPythonErrorFuncHandler = NULL;
 static PyObject *libxslt_xsltPythonErrorFuncCtxt = NULL;
 
 static void
-libxslt_xsltErrorFuncHandler(ATTRIBUTE_UNUSED void *ctx, const char *msg,
+libxslt_xsltErrorFuncHandler(void *ctx ATTRIBUTE_UNUSED, const char *msg,
                            ...)
 {
     int size;
@@ -621,7 +621,7 @@ libxslt_xsltErrorInitialize(void)
 }
 
 PyObject *
-libxslt_xsltRegisterErrorHandler(ATTRIBUTE_UNUSED PyObject * self,
+libxslt_xsltRegisterErrorHandler(PyObject * self ATTRIBUTE_UNUSED,
                                PyObject * args)
 {
     PyObject *py_retval;