From 977525fea662b7f37ad0e052894c1f62b5b03269 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Tue, 15 Mar 2022 10:22:39 +0000 Subject: [PATCH] patch 8.2.4569: Coverity warning for not using a return value Problem: Coverity warning for not using a return value. Solution: Add "(void)". --- src/popupwin.c | 2 +- src/version.c | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/popupwin.c b/src/popupwin.c index 9dee7579e..0aca7d324 100644 --- a/src/popupwin.c +++ b/src/popupwin.c @@ -3738,7 +3738,7 @@ may_update_popup_mask(int type) { // compute the position in the buffer line // from the position in the window - mouse_comp_pos(wp, &line_cp, &col_cp, + (void)mouse_comp_pos(wp, &line_cp, &col_cp, &lnum, plines_cache); redrawWinline(wp, lnum); } diff --git a/src/version.c b/src/version.c index c4a65f341..b634d8b74 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 */ +/**/ + 4569, /**/ 4568, /**/