mirror of
https://github.com/neovim/neovim.git
synced 2025-09-28 05:58:33 +00:00
refactor: remove redundant casts
This commit is contained in:
@@ -561,7 +561,7 @@ static int expand_set_opt_string(optexpand_T *args, char **values, size_t numVal
|
||||
continue;
|
||||
}
|
||||
}
|
||||
if (vim_regexec(regmatch, *val, (colnr_T)0)) {
|
||||
if (vim_regexec(regmatch, *val, 0)) {
|
||||
(*matches)[count++] = xstrdup(*val);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user