gendynapi.py: don't generate parameter for '...' - corrected

main
Sylvain 2022-12-09 20:34:13 +01:00
parent f442d0a0ef
commit cce1341b5b
No known key found for this signature in database
GPG Key ID: 5F87E02E5BC0939E
1 changed files with 4 additions and 0 deletions

View File

@ -403,6 +403,10 @@ def add_dyn_api(proc):
if argtype == "void":
continue
# Special case, '...' has no parameter name
if argtype == "...":
continue
# Var name: a, b, c, ...
varname = chr(i)
i += 1