mirror of
https://github.com/neovim/neovim.git
synced 2025-09-18 17:28:23 +00:00
refactor: replace char_u with char
Work on https://github.com/neovim/neovim/issues/459
This commit is contained in:
@@ -304,7 +304,7 @@ Object nvim_call_dict_function(Object dict, String fn, Array args, Error *err)
|
||||
}
|
||||
fn = (String) {
|
||||
.data = di->di_tv.vval.v_string,
|
||||
.size = STRLEN(di->di_tv.vval.v_string),
|
||||
.size = strlen(di->di_tv.vval.v_string),
|
||||
};
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user