diff options
author | David Hill <dhill@conformal.com> | 2014-06-10 12:06:19 -0400 |
---|---|---|
committer | David Hill <dhill@conformal.com> | 2014-06-10 12:06:19 -0400 |
commit | 0d4f13d20f304927277ad327c714481bc97de48f (patch) | |
tree | 0cea195e9fae20e3e10d48c5c829b0e894bdd492 /src/perl | |
parent | 5ca9287182092530dc206fa1af13fbe19cc357d1 (diff) | |
download | irssi-0d4f13d20f304927277ad327c714481bc97de48f.zip |
Replace deprecated g_str[n]casecmp with g_ascii_str[n]cmp.
Diffstat (limited to 'src/perl')
-rw-r--r-- | src/perl/ui/Themes.xs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/perl/ui/Themes.xs b/src/perl/ui/Themes.xs index ff025ee9..ebc8b69b 100644 --- a/src/perl/ui/Themes.xs +++ b/src/perl/ui/Themes.xs @@ -262,7 +262,7 @@ CODE: for (i = 0; formats[i].def != NULL; i++) { if (formats[i].tag != NULL && - g_strcasecmp(formats[i].tag, tag) == 0) + g_ascii_strcasecmp(formats[i].tag, tag) == 0) break; } |