diff options
Diffstat (limited to 'expr.c')
-rw-r--r-- | expr.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -589,7 +589,7 @@ postfixexpr(struct scope *s, struct expr *r) if (p) p = p->next; } - if (!t->func.isprototype && p) + if (p && !t->func.isvararg && t->func.paraminfo) error(&tok.loc, "not enough arguments for function call"); e = decay(e); next(); |