summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lib/colors.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/colors.c b/lib/colors.c
index 6ee81ccbb..f636ecc4f 100644
--- a/lib/colors.c
+++ b/lib/colors.c
@@ -120,8 +120,8 @@ static int colors_read_schemes(struct ul_color_ctl *cc);
*/
static int cmp_scheme_name(const void *a0, const void *b0)
{
- struct ul_color_scheme *a = (struct ul_color_scheme *) a0,
- *b = (struct ul_color_scheme *) b0;
+ const struct ul_color_scheme *a = (const struct ul_color_scheme *) a0,
+ *b = (const struct ul_color_scheme *) b0;
return strcmp(a->name, b->name);
}