mirror of
https://github.com/neovim/neovim.git
synced 2024-12-20 03:05:11 -07:00
coverity/135593: Error handling issues (CHECKED_RETURN)
Harmless issue (HI): retval is intentionally ignored, as is the wont of didset_options() and friends.
This commit is contained in:
parent
06e53aa487
commit
156df2c81b
@ -2077,7 +2077,7 @@ static void didset_options2(void)
|
||||
(void)highlight_changed();
|
||||
|
||||
// Parse default for 'clipboard'.
|
||||
opt_strings_flags(p_cb, p_cb_values, &cb_flags, true);
|
||||
(void)opt_strings_flags(p_cb, p_cb_values, &cb_flags, true);
|
||||
|
||||
// Parse default for 'fillchars'.
|
||||
(void)set_chars_option(&p_fcs);
|
||||
|
Loading…
Reference in New Issue
Block a user