From c1e9dd9dbd4c38d90fe705a8b9c1fcb06d421709 Mon Sep 17 00:00:00 2001 From: Sebastian Wilhelmi Date: Fri, 14 Dec 2001 09:40:20 +0000 Subject: Use g_ascii_strcasecmp() instead of g_strcasecmp(). 2001-12-14 Sebastian Wilhelmi * io-xpm.c: Use g_ascii_strcasecmp() instead of g_strcasecmp(). --- gdk-pixbuf/io-xpm.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'gdk-pixbuf/io-xpm.c') diff --git a/gdk-pixbuf/io-xpm.c b/gdk-pixbuf/io-xpm.c index 5328e75cd8..2e6e33aae4 100644 --- a/gdk-pixbuf/io-xpm.c +++ b/gdk-pixbuf/io-xpm.c @@ -898,7 +898,8 @@ static XPMColorEntry xColors[] = { static int compare_xcolor_entries (const void *a, const void *b) { - return g_strcasecmp ((const char *) a, ((const XPMColorEntry *) b)->name); + return g_ascii_strcasecmp ((const char *) a, + ((const XPMColorEntry *) b)->name); } static gboolean -- cgit v1.2.1