Merge pull request #435 from data-man/fix_typo

Fix typo in sema_expr.c [skip ci]
This commit is contained in:
Christoffer Lerno
2022-04-16 11:19:30 +02:00
committed by GitHub

View File

@@ -1332,7 +1332,7 @@ static inline bool sema_expand_call_arguments(SemaContext *context, CalledDecl *
if (variadic == VARIADIC_NONE)
{
// 15. We have too many parameters...
SEMA_ERROR(arg, "This argument would would exceed the number of parameters, did you add too many arguments?");
SEMA_ERROR(arg, "This argument would exceed the number of parameters, did you add too many arguments?");
return false;
}