indent_c: pvs/v1071

"void" cast unused return value of find_last_paren().
This commit is contained in:
Jan Edmund Lazo 2021-06-05 12:25:30 -04:00
parent 3d120b1c18
commit ac64055826
No known key found for this signature in database
GPG Key ID: 64915E6E9F735B15

View File

@ -3552,7 +3552,7 @@ term_again:
* Position the cursor over the rightmost paren, so that
* 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)
curwin->w_cursor = *trypos;