mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 15:22:04 +00:00
fix a bug where every 2nd(?) arg was being skipped when setting up a function
call
This commit is contained in:
parent
11381ce593
commit
a8e858f77d
1 changed files with 1 additions and 2 deletions
|
@ -104,8 +104,7 @@ emit_function_call (expr_t *e, def_t *dest)
|
|||
}
|
||||
}
|
||||
ind = count;
|
||||
for (; ind > 0; ind--) {
|
||||
ind--;
|
||||
while (ind-- > 0) {
|
||||
arg = args[ind];
|
||||
parm = def_parms[ind];
|
||||
parm.type = arg->type;
|
||||
|
|
Loading…
Reference in a new issue