swaponoff: fix compile-time warning
authorDenys Vlasenko <vda.linux@googlemail.com>
Fri, 18 Dec 2015 18:02:31 +0000 (19:02 +0100)
committerDenys Vlasenko <vda.linux@googlemail.com>
Fri, 18 Dec 2015 18:02:31 +0000 (19:02 +0100)
  CC      util-linux/swaponoff.o
cc1: warnings being treated as errors
util-linux/swaponoff.c: In function 'swap_enable_disable':
util-linux/swaponoff.c:100: warning: passing argument 1 of 'resolve_mount_spec' from incompatible pointer type
make[1]: *** [util-linux/swaponoff.o] Error 1

Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
util-linux/swaponoff.c

index 7e548a464520c2bb6d44af9005cec17d5c397c22..c29dd30712737da213433e64c14372e8862808e3 100644 (file)
@@ -92,7 +92,7 @@ enum {
 #define OPT_IFEXISTS (option_mask32 & OPT_e)
 #define OPT_PRIO     (option_mask32 & OPT_p)
 
-static int swap_enable_disable(const char *device)
+static int swap_enable_disable(char *device)
 {
        int err = 0;
        int quiet = 0;