From 3fab06941ae030805617d359fe8cf5b482ce9e70 Mon Sep 17 00:00:00 2001 From: Wolfgang Bumiller Date: Wed, 12 Jun 2013 17:32:42 +0200 Subject: [PATCH] fix a call typecheck issue --- ast.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ast.c b/ast.c index 332f708..5ac6283 100644 --- a/ast.c +++ b/ast.c @@ -1055,11 +1055,11 @@ bool ast_call_check_types(ast_call *self, ast_expression *va_type) if (!ast_call_check_vararg(self, va_type, func->varparam)) retval = false; } - if (!ast_compare_type(self->params[i], func->varparam)) + else if (!ast_compare_type(self->params[i], func->varparam)) { ast_type_to_string(self->params[i], tgot, sizeof(tgot)); ast_type_to_string(func->varparam, texp, sizeof(texp)); - compile_error(ast_ctx(self), "invalid type for parameter %u in function call: expected %s, got %s", + compile_error(ast_ctx(self), "invalid type for variadic parameter %u in function call: expected %s, got %s", (unsigned int)(i+1), texp, tgot); /* we don't immediately return */ retval = false; -- 2.39.2