summaryrefslogtreecommitdiff
path: root/src/vim9type.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2022-01-13 21:15:21 +0000
committerBram Moolenaar <Bram@vim.org>2022-01-13 21:15:21 +0000
commitd9d2fd0aa33dd9f7460d6f1e403505a60f7ce2fc (patch)
treece93edde74aa48c017e39bd350b79a7955d89b22 /src/vim9type.c
parentc43e6235c7b3e64f81c6a4e294e4e47abf7a869a (diff)
downloadvim-git-d9d2fd0aa33dd9f7460d6f1e403505a60f7ce2fc.tar.gz
patch 8.2.4086: "cctx" argument of find_func_even_dead() is unusedv8.2.4086
Problem: "cctx" argument of find_func_even_dead() is unused. Solution: Remove the argument.
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 bf82b7d3c..5b85c8e53 100644
--- a/src/vim9type.c
+++ b/src/vim9type.c
@@ -361,7 +361,7 @@ typval2type_int(typval_T *tv, int copyID, garray_T *type_gap, int flags)
member_type = internal_func_ret_type(idx, 0, NULL);
}
else
- ufunc = find_func(name, FALSE, NULL);
+ ufunc = find_func(name, FALSE);
}
if (ufunc != NULL)
{