comparison src/popupwin.c @ 28089:d3adf7b141a9 v8.2.4569

patch 8.2.4569: Coverity warning for not using a return value Commit: https://github.com/vim/vim/commit/977525fea662b7f37ad0e052894c1f62b5b03269 Author: Bram Moolenaar <Bram@vim.org> 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)".
author Bram Moolenaar <Bram@vim.org>
date Tue, 15 Mar 2022 11:30:04 +0100
parents c7f614c9ceb3
children d27a9eed9849
comparison
equal deleted inserted replaced
28088:687d1529c5fd 28089:d3adf7b141a9
3736 wp->w_redr_status = TRUE; 3736 wp->w_redr_status = TRUE;
3737 else 3737 else
3738 { 3738 {
3739 // compute the position in the buffer line 3739 // compute the position in the buffer line
3740 // from the position in the window 3740 // from the position in the window
3741 mouse_comp_pos(wp, &line_cp, &col_cp, 3741 (void)mouse_comp_pos(wp, &line_cp, &col_cp,
3742 &lnum, plines_cache); 3742 &lnum, plines_cache);
3743 redrawWinline(wp, lnum); 3743 redrawWinline(wp, lnum);
3744 } 3744 }
3745 } 3745 }
3746 3746