mirror of
https://github.com/neovim/neovim.git
synced 2025-09-15 07:48:18 +00:00
lint: fix clint errors around mb_tolower calls
This commit is contained in:
@@ -1865,7 +1865,7 @@ int pathcmp(const char *p, const char *q, int maxlen)
|
||||
if (vim_ispathsep(c2))
|
||||
return 1;
|
||||
return p_fic ? mb_toupper(c1) - mb_toupper(c2)
|
||||
: c1 - c2; /* no match */
|
||||
: c1 - c2; // no match
|
||||
}
|
||||
|
||||
i += MB_PTR2LEN((char_u *)p + i);
|
||||
|
Reference in New Issue
Block a user