From: Christian Brabandt Date: Sun, 24 Dec 2023 10:14:37 +0000 (+0100) Subject: patch 9.0.2185: Coverity complains about not checking return value X-Git-Tag: v9.0.2185^0 X-Git-Url: http://git.ipfire.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=6b9492e299c0b4ea76062160c4daf3985897f0b8;p=thirdparty%2Fvim.git patch 9.0.2185: Coverity complains about not checking return value Problem: Coverity complains about not checking return value in compare_isn_not_values (after 9.0.2184) Solution: cast return value to "(void)" to make intention clear closes: #13751 Signed-off-by: Christian Brabandt --- 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; }