commit | 977525fea662b7f37ad0e052894c1f62b5b03269 | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Tue Mar 15 10:22:39 2022 +0000 |
committer | Bram Moolenaar <Bram@vim.org> | Tue Mar 15 10:22:39 2022 +0000 |
tree | 94459c2002d5ae63ac7f3753f55b1c41775dc5d3 | |
parent | 10792feebd237aee89270669e509e85cafdfac60 [diff] [blame] |
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 index 9dee757..0aca7d3 100644 --- a/src/popupwin.c +++ b/src/popupwin.c
@@ -3738,7 +3738,7 @@ { // 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); }