Disable array subscript warning

This commit is contained in:
David Carlier
2020-06-09 22:43:31 +01:00
parent c02721775a
commit 4ee4495120
2 changed files with 4 additions and 4 deletions

View File

@ -231,7 +231,7 @@ static int stricmp(char const *a, char const *b) {
for (;; ++a, ++b) {
int d;
d = tolower(*a) - tolower(*b);
d = tolower((int)*a) - tolower((int)*b);
if (d != 0 || !*a) { return d; }
}