mirror of
https://github.com/neovim/neovim.git
synced 2025-01-01 17:23:36 -07:00
indent_c: pvs/v1071
"void" cast unused return value of find_last_paren().
This commit is contained in:
parent
3d120b1c18
commit
ac64055826
@ -3552,7 +3552,7 @@ term_again:
|
|||||||
* Position the cursor over the rightmost paren, so that
|
* Position the cursor over the rightmost paren, so that
|
||||||
* matching it will take us back to the start of the line.
|
* matching it will take us back to the start of the line.
|
||||||
*/
|
*/
|
||||||
find_last_paren(l, '(', ')');
|
(void)find_last_paren(l, '(', ')');
|
||||||
|
|
||||||
if ((trypos = find_match_paren(curbuf->b_ind_maxparen)) != NULL)
|
if ((trypos = find_match_paren(curbuf->b_ind_maxparen)) != NULL)
|
||||||
curwin->w_cursor = *trypos;
|
curwin->w_cursor = *trypos;
|
||||||
|
Loading…
Reference in New Issue
Block a user