mirror of
https://github.com/neovim/neovim.git
synced 2025-09-27 13:38:34 +00:00
refactor: replace char_u with char
Work on https://github.com/neovim/neovim/issues/459
This commit is contained in:
@@ -1556,7 +1556,7 @@ void show_utf8(void)
|
||||
sprintf((char *)IObuff + rlen, "%02x ",
|
||||
(line[i] == NL) ? NUL : line[i]); // NUL is stored as NL
|
||||
clen--;
|
||||
rlen += (int)STRLEN(IObuff + rlen);
|
||||
rlen += (int)strlen(IObuff + rlen);
|
||||
if (rlen > IOSIZE - 20) {
|
||||
break;
|
||||
}
|
||||
|
Reference in New Issue
Block a user