diff --git a/src/version.c b/src/version.c index 396a16327f..986b174389 100644 --- a/src/version.c +++ b/src/version.c @@ -704,6 +704,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 2185, /**/ 2184, /**/ diff --git a/src/vim9instr.c b/src/vim9instr.c index 5059eb0e62..a2179f3ecc 100644 --- a/src/vim9instr.c +++ b/src/vim9instr.c @@ -418,9 +418,9 @@ generate_two_op(cctx_T *cctx, char_u *op) compare_isn_not_values(typval_T *tv, type_T *type) { if (tv != NULL) - check_typval_is_value(tv); + (void)check_typval_is_value(tv); else - check_type_is_value(type); + (void)check_type_is_value(type); return ISN_DROP; }