diff --git a/tools/qfcc/source/emit.c b/tools/qfcc/source/emit.c index 8b37d02b0..1d11f63c3 100644 --- a/tools/qfcc/source/emit.c +++ b/tools/qfcc/source/emit.c @@ -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;