mirror of https://github.com/MidnightCommander/mc
replace isupper to g_ascii_isupper
This commit is contained in:
parent
87a891a54c
commit
bfa9c961ca
|
@ -1685,7 +1685,7 @@ my_type_of (int c)
|
|||
return 2;
|
||||
return 0x80000000UL;
|
||||
}
|
||||
if (isupper (c))
|
||||
if (g_ascii_isupper ((gchar) c))
|
||||
c = 'A';
|
||||
else if (g_ascii_islower ((gchar) c))
|
||||
c = 'a';
|
||||
|
|
Loading…
Reference in New Issue