mirror of
https://github.com/neovim/neovim.git
synced 2026-01-17 18:48:24 +10: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:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user