summaryrefslogtreecommitdiffstats
path: root/src/vim9type.c
diff options
context:
space:
mode:
authorLemonBoy <thatlemon@gmail.com>2023-08-19 16:02:04 +0200
committerChristian Brabandt <cb@256bit.org>2023-08-19 16:02:04 +0200
commitf244b2fbf2df7f984074c287b3d854bc62472b23 (patch)
treed53da85222c1b993b7688725ec7d5bf3b58efdee /src/vim9type.c
parentb5f6fe9ca2661d06bc0be839447ce1995450b9de (diff)
patch 9.0.1754: still Ci breakage (after 9.0.1741)v9.0.1754
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>
Diffstat (limited to 'src/vim9type.c')
-rw-r--r--src/vim9type.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vim9type.c b/src/vim9type.c
index 1363a1c3e7..4c1693668a 100644
--- 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);
}