This commit is contained in:
Andy Alt 2021-12-20 01:21:12 -06:00 committed by GitHub
commit f3b5e08560
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -13,5 +13,5 @@ void uiFreeText(char *t)
int uiprivStricmp(const char *a, const char *b)
{
return strcasecmp(a, b);
return g_ascii_strcasecmp(a, b);
}