From 9b6e4f9d115f1cf4635bc8e1e3443488b175a12d Mon Sep 17 00:00:00 2001 From: data-man Date: Sat, 16 Apr 2022 13:12:14 +0500 Subject: [PATCH] Fix typo in sema_expr.c [skip ci] --- src/compiler/sema_expr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/compiler/sema_expr.c b/src/compiler/sema_expr.c index 679fa940f..c010b66c2 100644 --- a/src/compiler/sema_expr.c +++ b/src/compiler/sema_expr.c @@ -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; }