diff --git a/src/version.c b/src/version.c index ca56f419c6..7a75be32aa 100644 --- a/src/version.c +++ b/src/version.c @@ -750,6 +750,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 4097, /**/ 4096, /**/ diff --git a/src/vim9compile.c b/src/vim9compile.c index af11ba929e..afc7885434 100644 --- a/src/vim9compile.c +++ b/src/vim9compile.c @@ -2008,7 +2008,7 @@ compile_assignment(char_u *arg, exarg_T *eap, cmdidx_T cmdidx, cctx_T *cctx) : isn->isn_arg.number != needed_list_len) { semsg(_(e_expected_nr_items_but_got_nr), - needed_list_len, isn->isn_arg.number); + needed_list_len, (int)isn->isn_arg.number); goto theend; } }