mirror of
https://github.com/neovim/neovim.git
synced 2025-09-16 00:08:19 +00:00
refactor: replace char_u with char 4 (#19987)
* refactor: replace char_u with char Work on https://github.com/neovim/neovim/issues/459
This commit is contained in:
@@ -1342,8 +1342,8 @@ scripterror:
|
||||
ga_grow(&global_alist.al_ga, 1);
|
||||
char *p = xstrdup(argv[0]);
|
||||
|
||||
if (parmp->diff_mode && os_isdir((char_u *)p) && GARGCOUNT > 0
|
||||
&& !os_isdir((char_u *)alist_name(&GARGLIST[0]))) {
|
||||
if (parmp->diff_mode && os_isdir(p) && GARGCOUNT > 0
|
||||
&& !os_isdir(alist_name(&GARGLIST[0]))) {
|
||||
char *r = concat_fnames(p, path_tail(alist_name(&GARGLIST[0])), true);
|
||||
xfree(p);
|
||||
p = r;
|
||||
|
Reference in New Issue
Block a user