mirror of
https://github.com/neovim/neovim.git
synced 2025-10-04 08:56:29 +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:
@@ -144,7 +144,7 @@ int get_keystroke(MultiQueue *events)
|
||||
continue;
|
||||
}
|
||||
buf[len >= buflen ? buflen - 1 : len] = NUL;
|
||||
n = utf_ptr2char(buf);
|
||||
n = utf_ptr2char((char *)buf);
|
||||
break;
|
||||
}
|
||||
xfree(buf);
|
||||
|
Reference in New Issue
Block a user