Add `__attribute__ ((__unused__))' where needed. Signed-off-by: Sami Kerola <kerolasa@xxxxxx> --- fdisk/sfdisk.c | 20 ++++++++++++++++---- 1 files changed, 16 insertions(+), 4 deletions(-) diff --git a/fdisk/sfdisk.c b/fdisk/sfdisk.c index c38128a..8d8ccea 100644 --- a/fdisk/sfdisk.c +++ b/fdisk/sfdisk.c @@ -1590,17 +1590,29 @@ msdos_partition(char *dev, int fd, unsigned long start, struct disk_desc *z) { } static int -osf_partition(char *dev, int fd, unsigned long start, struct disk_desc *z) { +osf_partition(char *dev __attribute__ ((__unused__)), + int fd __attribute__ ((__unused__)), + unsigned long start __attribute__ ((__unused__)), + struct disk_desc *z __attribute__ ((__unused__))) +{ return 0; } static int -sun_partition(char *dev, int fd, unsigned long start, struct disk_desc *z) { +sun_partition(char *dev __attribute__ ((__unused__)), + int fd __attribute__ ((__unused__)), + unsigned long start __attribute__ ((__unused__)), + struct disk_desc *z __attribute__ ((__unused__))) +{ return 0; } static int -amiga_partition(char *dev, int fd, unsigned long start, struct disk_desc *z) { +amiga_partition(char *dev __attribute__ ((__unused__)), + int fd __attribute__ ((__unused__)), + unsigned long start __attribute__ ((__unused__)), + struct disk_desc *z __attribute__ ((__unused__))) +{ return 0; } @@ -2348,7 +2360,7 @@ activate_usage(char *progn) { } static void -unhide_usage(char *progn) { +unhide_usage(char *progn __attribute__ ((__unused__))) { exit(1); } -- 1.7.5.2 -- To unsubscribe from this list: send the line "unsubscribe util-linux" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html