mirror of
https://github.com/neovim/neovim.git
synced 2025-09-24 03:58:32 +00:00
refactor: replace char_u variables and functions with char
Work on https://github.com/neovim/neovim/issues/459
This commit is contained in:
@@ -2637,7 +2637,7 @@ static void msg_puts_printf(const char *str, const ptrdiff_t maxlen)
|
||||
typval_T argv[1];
|
||||
argv[0].v_type = VAR_STRING;
|
||||
argv[0].v_lock = VAR_UNLOCKED;
|
||||
argv[0].vval.v_string = (char_u *)str;
|
||||
argv[0].vval.v_string = (char *)str;
|
||||
typval_T rettv = TV_INITIAL_VALUE;
|
||||
callback_call(&on_print, 1, argv, &rettv);
|
||||
tv_clear(&rettv);
|
||||
|
Reference in New Issue
Block a user