diff src/vim9type.c @ 32890:277ac1fb33cc v9.0.1754

patch 9.0.1754: still Ci breakage (after 9.0.1741) Commit: https://github.com/vim/vim/commit/f244b2fbf2df7f984074c287b3d854bc62472b23 Author: LemonBoy <thatlemon@gmail.com> Date: Sat Aug 19 16:02:04 2023 +0200 patch 9.0.1754: still Ci breakage (after 9.0.1741) Problem: still ci breakage (after 9.0.1741) Solution: fix remaining issue Signed-off-by: Christian Brabandt <cb@256bit.org> Co-authored-by: LemonBoy <thatlemon@gmail.com>
author Christian Brabandt <cb@256bit.org>
date Sat, 19 Aug 2023 16:15:03 +0200
parents a39314fa9495
children e5a1319f3e25
line wrap: on
line diff
--- a/src/vim9type.c
+++ b/src/vim9type.c
@@ -682,8 +682,8 @@ check_typval_arg_type(
     {
 	where.wt_index = arg_idx;
 	where.wt_kind = WT_ARGUMENT;
-	where.wt_func_name = func_name;
     }
+    where.wt_func_name = func_name;
     return check_typval_type(expected, actual_tv, where);
 }