refactor: replace char_u variables and functions with char (#18288)

Work on https://github.com/neovim/neovim/issues/459
This commit is contained in:
dundargoc
2022-04-30 16:48:00 +02:00
committed by GitHub
parent fcdf24d8be
commit 3c23100130
15 changed files with 492 additions and 508 deletions

View File

@@ -568,7 +568,7 @@ void nvim_set_current_dir(String dir, Error *err)
try_start();
if (!changedir_func(string, kCdScopeGlobal)) {
if (!changedir_func((char *)string, kCdScopeGlobal)) {
if (!try_end(err)) {
api_set_error(err, kErrorTypeException, "Failed to change directory");
}