X-Git-Url: https://diplodocus.org/git/nmh/blobdiff_plain/cec6ee584ab027c7c536fb0bb62e768b40a4e94c..5f19f65a44551825592f92c0b5f1b4533827b13e:/sbr/mf.c diff --git a/sbr/mf.c b/sbr/mf.c index 9e5cad8c..63b13ba4 100644 --- a/sbr/mf.c +++ b/sbr/mf.c @@ -39,10 +39,8 @@ lequal (const char *a, const char *b) for (; *a; a++, b++) { if (*b == 0) return FALSE; - c1 = islower ((unsigned char) *a) ? - toupper ((unsigned char) *a) : *a; - c2 = islower ((unsigned char) *b) ? - toupper ((unsigned char) *b) : *b; + c1 = toupper((unsigned char)*a); + c2 = toupper((unsigned char)*b); if (c1 != c2) return FALSE; }