mirror of
https://github.com/neovim/neovim.git
synced 2025-09-30 06:58:35 +00:00
refactor: remove redundant casts
This commit is contained in:
@@ -463,7 +463,7 @@ static int del_history_entry(int histype, char *str)
|
||||
if (hisptr->hisstr == NULL) {
|
||||
break;
|
||||
}
|
||||
if (vim_regexec(®match, hisptr->hisstr, (colnr_T)0)) {
|
||||
if (vim_regexec(®match, hisptr->hisstr, 0)) {
|
||||
found = true;
|
||||
hist_free_entry(hisptr);
|
||||
} else {
|
||||
|
Reference in New Issue
Block a user