mirror of
https://github.com/neovim/neovim.git
synced 2025-12-17 11:55:34 +00:00
refactor: remove redundant casts
This commit is contained in:
@@ -393,7 +393,7 @@ static void arglist_del_files(garray_T *alist_ga)
|
||||
|
||||
bool didone = false;
|
||||
for (int match = 0; match < ARGCOUNT; match++) {
|
||||
if (vim_regexec(®match, alist_name(&ARGLIST[match]), (colnr_T)0)) {
|
||||
if (vim_regexec(®match, alist_name(&ARGLIST[match]), 0)) {
|
||||
didone = true;
|
||||
xfree(ARGLIST[match].ae_fname);
|
||||
memmove(ARGLIST + match, ARGLIST + match + 1,
|
||||
|
||||
Reference in New Issue
Block a user