Skip to content

Commit

Permalink
patch 8.2.4569: Coverity warning for not using a return value
Browse files Browse the repository at this point in the history
Problem:    Coverity warning for not using a return value.
Solution:   Add "(void)".
  • Loading branch information
brammool committed Mar 15, 2022
1 parent 10792fe commit 977525f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/popupwin.c
Expand Up @@ -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);
}
Expand Down
2 changes: 2 additions & 0 deletions src/version.c
Expand Up @@ -750,6 +750,8 @@ static char *(features[]) =

static int included_patches[] =
{ /* Add new patch number below this line */
/**/
4569,
/**/
4568,
/**/
Expand Down

0 comments on commit 977525f

Please sign in to comment.