# HG changeset patch # User Bram Moolenaar # Date 1647340204 -3600 # Node ID d3adf7b141a95a4d7c5328fd05ef145f42436805 # Parent 687d1529c5fd615cf74ced378ee3be287525025d patch 8.2.4569: Coverity warning for not using a return value Commit: https://github.com/vim/vim/commit/977525fea662b7f37ad0e052894c1f62b5b03269 Author: Bram Moolenaar Date: Tue Mar 15 10:22:39 2022 +0000 patch 8.2.4569: Coverity warning for not using a return value Problem: Coverity warning for not using a return value. Solution: Add "(void)". diff --git a/src/popupwin.c b/src/popupwin.c --- 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 --- 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,