mirror of
https://github.com/neovim/neovim.git
synced 2025-10-06 01:46:29 +00:00
refactor: replace char_u with char 21 (#21779)
refactor: replace char_u with char Work on https://github.com/neovim/neovim/issues/459
This commit is contained in:
@@ -964,7 +964,7 @@ void ex_mkrc(exarg_T *eap)
|
||||
vim_mkdir_emsg((const char *)p_vdir, 0755);
|
||||
}
|
||||
|
||||
fd = open_exfile((char_u *)fname, eap->forceit, WRITEBIN);
|
||||
fd = open_exfile(fname, eap->forceit, WRITEBIN);
|
||||
if (fd != NULL) {
|
||||
if (eap->cmdidx == CMD_mkview) {
|
||||
flagp = &vop_flags;
|
||||
|
Reference in New Issue
Block a user