mirror of
https://github.com/neovim/neovim.git
synced 2025-10-16 23:06:14 +00:00
refactor: replace char_u with char
Work on https://github.com/neovim/neovim/issues/459
This commit is contained in:
@@ -4001,7 +4001,7 @@ static bool shada_removable(const char *name)
|
||||
if (part[0] == 'r') {
|
||||
home_replace(NULL, part + 1, (char *)NameBuff, MAXPATHL, true);
|
||||
size_t n = STRLEN(NameBuff);
|
||||
if (mb_strnicmp((char_u *)NameBuff, (char_u *)new_name, n) == 0) {
|
||||
if (mb_strnicmp(NameBuff, new_name, n) == 0) {
|
||||
retval = true;
|
||||
break;
|
||||
}
|
||||
|
Reference in New Issue
Block a user