lint: fix clint errors around mb_tolower calls

This commit is contained in:
Björn Linse
2017-04-09 10:08:26 +02:00
parent acc06b0b7b
commit c1cf033981
10 changed files with 67 additions and 75 deletions

View File

@@ -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);