summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2022-03-15 10:22:39 +0000
committerBram Moolenaar <Bram@vim.org>2022-03-15 10:22:39 +0000
commit977525fea662b7f37ad0e052894c1f62b5b03269 (patch)
tree94459c2002d5ae63ac7f3753f55b1c41775dc5d3
parent10792feebd237aee89270669e509e85cafdfac60 (diff)
patch 8.2.4569: Coverity warning for not using a return valuev8.2.4569
Problem: Coverity warning for not using a return value. Solution: Add "(void)".
-rw-r--r--src/popupwin.c2
-rw-r--r--src/version.c2
2 files changed, 3 insertions, 1 deletions
diff --git a/src/popupwin.c b/src/popupwin.c
index 9dee7579e5..0aca7d3246 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 c4a65f3414..b634d8b748 100644
--- a/src/version.c
+++ b/src/version.c
@@ -751,6 +751,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 4569,
+/**/
4568,
/**/
4567,