fixed bug 119862 (missing param on ns error print)
authorWilliam M. Brack <wbrack@src.gnome.org>
Thu, 14 Aug 2003 14:06:16 +0000 (14:06 +0000)
committerWilliam M. Brack <wbrack@src.gnome.org>
Thu, 14 Aug 2003 14:06:16 +0000 (14:06 +0000)
* xslt.c: fixed bug 119862 (missing param on ns error print)

ChangeLog
libxslt/xslt.c

index 827661c..2d6d7b2 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Thu Aug 14 10:04:37 HKT 2003 William Brack <wbrack@mmm.com.hk>
+
+       * xslt.c: fixed bug 119862 (missing param on ns error print)
+
 Sun Aug 10 00:21:48 CEST 2003 Daniel Veillard <daniel@veillard.com>
 
        * News configure.in: preparing libxslt-1.0.32 release
index 9ce8b66..b8384e3 100644 (file)
@@ -1314,7 +1314,7 @@ xsltGatherNamespaces(xsltStylesheetPtr style) {
                    URI = xmlHashLookup(style->nsHash, ns->prefix);
                    if ((URI != NULL) && (!xmlStrEqual(URI, ns->href))) {
                        xsltTransformError(NULL, style, cur,
-            "Namespaces prefix %s used for multiple namespaces\n");
+            "Namespaces prefix %s used for multiple namespaces\n",ns->prefix);
                        if (style != NULL) style->warnings++;
                    } else if (URI == NULL) {
                        xmlHashUpdateEntry(style->nsHash, ns->prefix,