From 5580b2bce15da78e52ac5032160d37ecd6f9ffcb Mon Sep 17 00:00:00 2001 From: "William M. Brack" Date: Thu, 14 Aug 2003 14:06:16 +0000 Subject: [PATCH] fixed bug 119862 (missing param on ns error print) * xslt.c: fixed bug 119862 (missing param on ns error print) --- ChangeLog | 4 ++++ libxslt/xslt.c | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 827661c..2d6d7b2 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Thu Aug 14 10:04:37 HKT 2003 William Brack + + * xslt.c: fixed bug 119862 (missing param on ns error print) + Sun Aug 10 00:21:48 CEST 2003 Daniel Veillard * News configure.in: preparing libxslt-1.0.32 release diff --git a/libxslt/xslt.c b/libxslt/xslt.c index 9ce8b66..b8384e3 100644 --- a/libxslt/xslt.c +++ b/libxslt/xslt.c @@ -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, -- 2.7.4