mirror of
https://github.com/AFLplusplus/AFLplusplus.git
synced 2025-06-15 11:28:08 +00:00
Disable array subscript warning
This commit is contained in:
@ -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; }
|
||||
|
||||
}
|
||||
|
Reference in New Issue
Block a user