summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tests/testtreelistmodel.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/testtreelistmodel.c b/tests/testtreelistmodel.c
index ad9f0f4c59..88f219797b 100644
--- a/tests/testtreelistmodel.c
+++ b/tests/testtreelistmodel.c
@@ -131,7 +131,7 @@ compare_files (gconstpointer first,
first_path = g_file_get_path (first_file);
second_path = g_file_get_path (second_file);
- result = strcasecmp (first_path, second_path);
+ result = g_ascii_strcasecmp (first_path, second_path);
g_free (first_path);
g_free (second_path);