mirror of
https://github.com/neovim/neovim.git
synced 2025-10-05 09:26:30 +00:00
refactor: replace char_u variables and functions with char
Work on https://github.com/neovim/neovim/issues/459
This commit is contained in:
@@ -429,8 +429,8 @@ static int cs_add_common(char *arg1, char *arg2, char *flags)
|
||||
expand_env((char_u *)arg1, (char_u *)fname, MAXPATHL);
|
||||
size_t len = STRLEN(fname);
|
||||
fbuf = (char_u *)fname;
|
||||
(void)modify_fname((char_u *)":p", false, &usedlen,
|
||||
(char_u **)&fname, &fbuf, &len);
|
||||
(void)modify_fname(":p", false, &usedlen,
|
||||
&fname, (char **)&fbuf, &len);
|
||||
if (fname == NULL) {
|
||||
goto add_err;
|
||||
}
|
||||
|
Reference in New Issue
Block a user