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:
parent
aab77a372a
commit
9ac28a7e5c
1 changed files with 1 additions and 1 deletions
|
|
@ -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);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue