From c23664ff97d6b4639fa955f62e96c45d9cb93fc7 Mon Sep 17 00:00:00 2001 From: William S Fulton Date: Sun, 19 Mar 2006 22:40:45 +0000 Subject: [PATCH] Fix #1448184 error message formatting git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@9014 626c5289-ae23-0410-ae9c-e8d60b6d4f22 --- Source/Modules/tcl8.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Modules/tcl8.cxx b/Source/Modules/tcl8.cxx index d4e4578fb..7996a427f 100644 --- a/Source/Modules/tcl8.cxx +++ b/Source/Modules/tcl8.cxx @@ -1231,7 +1231,7 @@ public: if (!temp) temp = NewString(""); Clear(temp); if (nspace) { - Printf(temp,"%s::%s", ns_name,iname); + Printf(temp,"%s::%s ", ns_name,iname); } else { Printf(temp,"%s ", iname); }