Fix unescaped literal % (in "%varargs") in call to Printf().
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@9801 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
parent
097ad60911
commit
19247953b8
1 changed files with 1 additions and 1 deletions
|
|
@ -2316,7 +2316,7 @@ int ALLEGROCL::emit_defun(Node *n, File *f_cl) {
|
|||
}
|
||||
|
||||
if (SwigType_isvarargs(argtype)) {
|
||||
Printf(stderr, "Function %s (line %d) contains varargs, which is not directly supported. Use %varargs instead.\n", Getattr(n, "name"), Getline(n));
|
||||
Printf(stderr, "Function %s (line %d) contains varargs, which is not directly supported. Use %%varargs instead.\n", Getattr(n, "name"), Getline(n));
|
||||
} else {
|
||||
String *argname = NewStringf("PARM%d_%s", largnum, Getattr(p, "name"));
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue