mirror of
https://github.com/neovim/neovim.git
synced 2025-09-18 01:08:20 +00:00
refactor: replace char_u with char
Work on https://github.com/neovim/neovim/issues/459
This commit is contained in:
@@ -361,7 +361,7 @@ static char *ExpandOne_start(int mode, expand_T *xp, char *str, int options)
|
||||
// expand_wildcards, only need to check the first two.
|
||||
non_suf_match = 0;
|
||||
for (int i = 0; i < 2; i++) {
|
||||
if (match_suffix((char_u *)xp->xp_files[i])) {
|
||||
if (match_suffix(xp->xp_files[i])) {
|
||||
non_suf_match++;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user