Remove unnecessary use of %s with a constant string, making code consistent

with elsewhere.


git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@9089 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
Olly Betts 2006-05-05 13:36:43 +00:00
commit 9ac28a7e5c

View file

@ -998,7 +998,7 @@ public:
int has_this_ptr = (wrapperType==memberfn)?shadow:0;
sprintf(args, "%s[%d]", "zval **args", num_arguments-has_this_ptr);
sprintf(args, "zval **args[%d]", num_arguments-has_this_ptr);
Wrapper_add_local(f, "args",args);