summaryrefslogtreecommitdiff
path: root/src/perl
diff options
context:
space:
mode:
authorDavid Hill <dhill@conformal.com>2014-06-10 12:06:19 -0400
committerDavid Hill <dhill@conformal.com>2014-06-10 12:06:19 -0400
commit0d4f13d20f304927277ad327c714481bc97de48f (patch)
tree0cea195e9fae20e3e10d48c5c829b0e894bdd492 /src/perl
parent5ca9287182092530dc206fa1af13fbe19cc357d1 (diff)
downloadirssi-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.xs2
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;
}