commit | 20cc6d567f8cc21405ab05ca62a6955a5b1277b5 | [log] [tgz] |
---|---|---|
author | Rob Landley <rob@landley.net> | Tue Sep 12 21:42:17 2006 +0000 |
committer | Rob Landley <rob@landley.net> | Tue Sep 12 21:42:17 2006 +0000 |
tree | d8f7b3cd70149f3e0e291cc10a14c06917d34cb5 | |
parent | 1b2b5cfba81aab3e56d374ee3dcee97cde4bcb4e [diff] [blame] |
Remove pointless "const". Bloatcheck says 0 bytes difference.
diff --git a/util-linux/swaponoff.c b/util-linux/swaponoff.c index 9bb70a1..c693cf9 100644 --- a/util-linux/swaponoff.c +++ b/util-linux/swaponoff.c
@@ -15,7 +15,7 @@ #include <sys/swap.h> -static int swap_enable_disable(const char *device) +static int swap_enable_disable(char *device) { int status; struct stat st;