diff options
author | William M. Brack <wbrack@src.gnome.org> | 2003-11-02 01:10:43 +0000 |
---|---|---|
committer | William M. Brack <wbrack@src.gnome.org> | 2003-11-02 01:10:43 +0000 |
commit | a083b0b03e26ab057b6cca3e44ac9ea11a4b19d9 (patch) | |
tree | 224f1ae3315fc374c01ab68b375894bfa9a90650 /libexslt | |
parent | c054e019f012083bee82f891700efd950d01adfb (diff) | |
download | libxslt-a083b0b03e26ab057b6cca3e44ac9ea11a4b19d9.tar.gz libxslt-a083b0b03e26ab057b6cca3e44ac9ea11a4b19d9.tar.bz2 libxslt-a083b0b03e26ab057b6cca3e44ac9ea11a4b19d9.zip |
fixed bug #125502 and corrected expected test output fixed broken test
* libxslt/transform.c, tests/general/bug-119.out: fixed
bug #125502 and corrected expected test output
* tests/general/bug-79.out: fixed broken test (bug #123328)
* libxslt/pattern.c, libexslt/functions.c: minor change to
eliminate compilation warning
Diffstat (limited to 'libexslt')
-rw-r--r-- | libexslt/functions.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libexslt/functions.c b/libexslt/functions.c index efff43f3..efa6713d 100644 --- a/libexslt/functions.c +++ b/libexslt/functions.c @@ -184,13 +184,13 @@ exsltFuncShutdown (xsltTransformContextPtr ctxt ATTRIBUTE_UNUSED, * @style: an XSLT stylesheet * @URI: the namespace URI for the extension * - * Allocates the styleshet data for EXSLT - Function + * Allocates the stylesheet data for EXSLT - Function * * Returns the allocated data */ static xmlHashTablePtr -exsltFuncStyleInit (xsltStylesheetPtr style, - const xmlChar *URI) { +exsltFuncStyleInit (xsltStylesheetPtr style ATTRIBUTE_UNUSED, + const xmlChar *URI ATTRIBUTE_UNUSED) { return xmlHashCreate(1); } |