compilation fix :)

This commit is contained in:
apio 2022-10-22 21:16:51 +02:00
parent 7600bc5582
commit dd9b90d69d

View File

@ -4,7 +4,7 @@
static char fold(char c)
{
if (isalpha(c)) return tolower(c);
if (isalpha(c)) return (char)tolower(c);
return c;
}