mirror of
https://github.com/neovim/neovim.git
synced 2025-10-01 23:48:32 +00:00
refactor: replace char_u with char
Work on https://github.com/neovim/neovim/issues/459
This commit is contained in:
@@ -728,7 +728,7 @@ static void script_dump_profile(FILE *fd)
|
||||
// Keep going till the end of file, so that trailing
|
||||
// continuation lines are listed.
|
||||
for (int i = 0;; i++) {
|
||||
if (vim_fgets(IObuff, IOSIZE, sfd)) {
|
||||
if (vim_fgets((char_u *)IObuff, IOSIZE, sfd)) {
|
||||
break;
|
||||
}
|
||||
// When a line has been truncated, append NL, taking care
|
||||
|
Reference in New Issue
Block a user