mirror of
https://github.com/neovim/neovim.git
synced 2025-10-16 14:56:08 +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:
@@ -3023,7 +3023,7 @@ shada_write_file_nomerge: {}
|
||||
if (tail != fname) {
|
||||
const char tail_save = *tail;
|
||||
*tail = NUL;
|
||||
if (!os_isdir((char_u *)fname)) {
|
||||
if (!os_isdir(fname)) {
|
||||
int ret;
|
||||
char *failed_dir;
|
||||
if ((ret = os_mkdir_recurse(fname, 0700, &failed_dir)) != 0) {
|
||||
|
Reference in New Issue
Block a user