summaryrefslogtreecommitdiffstats
path: root/patches/busybox-1.13.4/generic/busybox-1.13.2-fdisk-osf-unused.diff
blob: 9039cb8a6f597498caee153e1eb6ec46dd23ee1c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
Subject: silence warning in fdisk_osf
From: Robert Schwebel <r.schwebel@pengutronix.de>

Silence this warning, which crashes when CONFIG_WERROR is active:

cc1: warnings being treated as errors
In file included from util-linux/fdisk.c:622:
util-linux/fdisk_osf.c: In function 'xbsd_writelabel':
util-linux/fdisk_osf.c:961: error: unused parameter 'p'

Signed-off-by: Robert Schwebel <r.schwebel@pengutronix.de>

used cleaner fix:

Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>

---
 util-linux/fdisk_osf.c |    1 +
 1 file changed, 1 insertion(+)

Index: busybox-1.13.2/util-linux/fdisk_osf.c
===================================================================
--- busybox-1.13.2.orig/util-linux/fdisk_osf.c
+++ busybox-1.13.2/util-linux/fdisk_osf.c
@@ -966,6 +966,7 @@ xbsd_writelabel(struct partition *p)
 #if !defined(__alpha__) && !defined(__powerpc__) && !defined(__hppa__)
 	sector = get_start_sect(p) + BSD_LABELSECTOR;
 #else
+	(void)p;	/* silence warning */
 	sector = BSD_LABELSECTOR;
 #endif