mirror of
https://github.com/neovim/neovim.git
synced 2025-09-29 06:28:35 +00:00
refactor: replace char_u with char
Work on https://github.com/neovim/neovim/issues/459
This commit is contained in:
@@ -419,7 +419,7 @@ static int assert_equalfile(typval_T *argvars)
|
||||
line2[lineidx] = NUL;
|
||||
ga_concat(&ga, " after \"");
|
||||
ga_concat(&ga, line1);
|
||||
if (STRCMP(line1, line2) != 0) {
|
||||
if (strcmp(line1, line2) != 0) {
|
||||
ga_concat(&ga, "\" vs \"");
|
||||
ga_concat(&ga, line2);
|
||||
}
|
||||
|
Reference in New Issue
Block a user