From ca16c60f337ed33d5dd66a6e90aaf95b619c5e47 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Tue, 6 Sep 2022 18:57:08 +0100 Subject: patch 9.0.0398: members of funccall_T are inconsistently named Problem: Members of funccall_T are inconsistently named. Solution: Use the "fc_" prefix for all members. --- src/vim9execute.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/vim9execute.c') diff --git a/src/vim9execute.c b/src/vim9execute.c index 0b50acee3..40b23bdd2 100644 --- a/src/vim9execute.c +++ b/src/vim9execute.c @@ -5080,12 +5080,12 @@ exec_instructions(ectx_T *ectx) case ISN_PROF_END: { #ifdef FEAT_PROFILE - funccall_T cookie; - ufunc_T *cur_ufunc = + funccall_T cookie; + ufunc_T *cur_ufunc = (((dfunc_T *)def_functions.ga_data) + ectx->ec_dfunc_idx)->df_ufunc; - cookie.func = cur_ufunc; + cookie.fc_func = cur_ufunc; if (iptr->isn_type == ISN_PROF_START) { func_line_start(&cookie, iptr->isn_lnum); -- cgit v1.2.1