diff options
author | William M. Brack <wbrack@src.gnome.org> | 2007-05-06 16:18:15 +0000 |
---|---|---|
committer | William M. Brack <wbrack@src.gnome.org> | 2007-05-06 16:18:15 +0000 |
commit | 78ef3fda7bf7b5fa796571891b4072d02fc518f7 (patch) | |
tree | c927dda65c3f664168f6d793373a23e31776ce47 | |
parent | 9df6677d522ddc4543cb8b97f3c7aace9b5e7c06 (diff) | |
download | libxslt-78ef3fda7bf7b5fa796571891b4072d02fc518f7.tar.gz libxslt-78ef3fda7bf7b5fa796571891b4072d02fc518f7.tar.bz2 libxslt-78ef3fda7bf7b5fa796571891b4072d02fc518f7.zip |
fixed minor compilation warning in libxslt/transform.c
svn path=/trunk/; revision=1428
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | libxslt/transform.c | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -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 diff --git a/libxslt/transform.c b/libxslt/transform.c index ffafc311..c4ce0757 100644 --- a/libxslt/transform.c +++ b/libxslt/transform.c @@ -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 |