summaryrefslogtreecommitdiffstats
path: root/src/vim9instr.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/vim9instr.c
parentc43e6235c7b3e64f81c6a4e294e4e47abf7a869a (diff)
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/vim9instr.c')
-rw-r--r--src/vim9instr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vim9instr.c b/src/vim9instr.c
index 48b22a6d76..50572978a7 100644
--- a/src/vim9instr.c
+++ b/src/vim9instr.c
@@ -2030,7 +2030,7 @@ delete_instr(isn_T *isn)
case ISN_NEWFUNC:
{
char_u *lambda = isn->isn_arg.newfunc.nf_lambda;
- ufunc_T *ufunc = find_func_even_dead(lambda, TRUE, NULL);
+ ufunc_T *ufunc = find_func_even_dead(lambda, TRUE);
if (ufunc != NULL)
{