summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lib/glob.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/glob.c b/lib/glob.c
index c4c60674b6..1b0137b9a9 100644
--- a/lib/glob.c
+++ b/lib/glob.c
@@ -78,8 +78,8 @@ int glob_pattern_p(const char *pattern, int quote)
/* Do a collated comparison of A and B. */
static int collated_compare(const void *a, const void *b)
{
- const char *s1 = a;
- const char *s2 = b;
+ const char *const s1 = *(const char *const *)a;
+ const char *const s2 = *(const char *const *)b;
if (s1 == s2)
return 0;