mirror of
https://github.com/neovim/neovim.git
synced 2025-10-01 07:28:34 +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:
@@ -685,7 +685,7 @@ char *u_get_undo_file_name(const char *const buf_ffname, const bool reading)
|
||||
*p-- = NUL;
|
||||
}
|
||||
|
||||
bool has_directory = os_isdir((char_u *)dir_name);
|
||||
bool has_directory = os_isdir(dir_name);
|
||||
if (!has_directory && *dirp == NUL && !reading) {
|
||||
// Last directory in the list does not exist, create it.
|
||||
int ret;
|
||||
|
Reference in New Issue
Block a user