fixed minor compilation warning in libxslt/transform.c
authorWilliam M. Brack <wbrack@src.gnome.org>
Sun, 6 May 2007 16:18:15 +0000 (16:18 +0000)
committerWilliam M. Brack <wbrack@src.gnome.org>
Sun, 6 May 2007 16:18:15 +0000 (16:18 +0000)
svn path=/trunk/; revision=1428

ChangeLog
libxslt/transform.c

index 110feee..b5fe078 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Mon May  7 00:14:28 HKT 2007 William Brack <wbrack@mmm.com.hk>
+
+       * libxslt/transform.c: fixed minor compilation warning; no change
+         to logic.
+
 Sun May  6 23:42:38 HKT 2007 William Brack <wbrack@mmm.com.hk>
 
        * libexslt/math.c: fixed two memory leaks, one in exsltMathConstant
index ffafc31..c4ce075 100644 (file)
@@ -5085,7 +5085,7 @@ xsltChoose(xsltTransformContextPtr ctxt, xmlNodePtr contextNode,
        xmlDocPtr oldXPContextDoc = xpctxt->doc;
        int oldXPProximityPosition = xpctxt->proximityPosition;
        int oldXPContextSize = xpctxt->contextSize;
-       xmlNsPtr oldXPNamespaces = xpctxt->namespaces;
+       xmlNsPtr *oldXPNamespaces = xpctxt->namespaces;
        int oldXPNsNr = xpctxt->nsNr;
        
 #ifdef XSLT_REFACTORED