Fix typo in sema_expr.c [skip ci]

This commit is contained in:
data-man
2022-04-16 13:12:14 +05:00
parent ecdcd8f959
commit 9b6e4f9d11

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;
}