mirror of
https://github.com/neovim/neovim.git
synced 2025-09-15 15:58:17 +00:00
refactor: replace char_u with char 24 (#21823)
refactor: replace char_u with char Work on https://github.com/neovim/neovim/issues/459
This commit is contained in:
@@ -1950,7 +1950,7 @@ char_u *nlua_register_table_as_callable(const typval_T *const arg)
|
||||
|
||||
LuaRef func = nlua_ref_global(lstate, -1);
|
||||
|
||||
char_u *name = register_luafunc(func);
|
||||
char_u *name = (char_u *)register_luafunc(func);
|
||||
|
||||
lua_pop(lstate, 1); // []
|
||||
assert(top == lua_gettop(lstate));
|
||||
|
Reference in New Issue
Block a user