lib/colors:: fix compiler warnings [-Wcast-qual]

Signed-off-by: Karel Zak <kzak@redhat.com>
This commit is contained in:
Karel Zak 2018-07-23 11:55:25 +02:00
parent 0f9b25958e
commit 892fc7d9de
1 changed files with 2 additions and 2 deletions

View File

@ -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);
}