summaryrefslogtreecommitdiff
path: root/src/fe-common/core/printtext.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/fe-common/core/printtext.c')
-rw-r--r--src/fe-common/core/printtext.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/fe-common/core/printtext.c b/src/fe-common/core/printtext.c
index e985131f..0e409ecd 100644
--- a/src/fe-common/core/printtext.c
+++ b/src/fe-common/core/printtext.c
@@ -462,9 +462,9 @@ static void sig_gui_dialog(const char *type, const char *text)
{
char *format;
- if (g_strcasecmp(type, "warning") == 0)
+ if (g_ascii_strcasecmp(type, "warning") == 0)
format = "%_Warning:%_ %s";
- else if (g_strcasecmp(type, "error") == 0)
+ else if (g_ascii_strcasecmp(type, "error") == 0)
format = "%_Error:%_ %s";
else
format = "%s";