mirror of
https://github.com/neovim/neovim.git
synced 2025-09-07 03:48:18 +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:
@@ -2293,7 +2293,7 @@ static bool diff_equal_char(const char *const p1, const char *const p2, int *con
|
||||
static int diff_cmp(char *s1, char *s2)
|
||||
{
|
||||
if ((diff_flags & DIFF_IBLANK)
|
||||
&& (*(char_u *)skipwhite(s1) == NUL || *skipwhite(s2) == NUL)) {
|
||||
&& (*skipwhite(s1) == NUL || *skipwhite(s2) == NUL)) {
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user