From 0145c00a12a32cdccb9b100da8a900335109c86b Mon Sep 17 00:00:00 2001 From: Karel Zak Date: Mon, 23 Jul 2018 11:17:28 +0200 Subject: lib/loopdev: fix compiler warning [-Wcast-qual] Signed-off-by: Karel Zak --- lib/loopdev.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib') diff --git a/lib/loopdev.c b/lib/loopdev.c index cab05af94..de0d50ba2 100644 --- a/lib/loopdev.c +++ b/lib/loopdev.c @@ -402,8 +402,8 @@ static int loopiter_set_device(struct loopdev_cxt *lc, const char *device) static int cmpnum(const void *p1, const void *p2) { - return (((* (int *) p1) > (* (int *) p2)) - - ((* (int *) p1) < (* (int *) p2))); + return (((* (const int *) p1) > (* (const int *) p2)) - + ((* (const int *) p1) < (* (const int *) p2))); } /* -- cgit v1.2.3-55-g7522