summaryrefslogtreecommitdiffstats
path: root/libfdisk/src
diff options
context:
space:
mode:
authorKarel Zak2018-05-03 10:30:51 +0200
committerKarel Zak2018-05-03 10:40:37 +0200
commit01aec449f13482ad5dfe0be59dc3f69d7df2da70 (patch)
tree38e27e978b5431f2a5279c3ce62384fcd696df25 /libfdisk/src
parentlibmount: fix compiler warning [-Wunused-parameter] (diff)
downloadkernel-qcow2-util-linux-01aec449f13482ad5dfe0be59dc3f69d7df2da70.tar.gz
kernel-qcow2-util-linux-01aec449f13482ad5dfe0be59dc3f69d7df2da70.tar.xz
kernel-qcow2-util-linux-01aec449f13482ad5dfe0be59dc3f69d7df2da70.zip
libfdisk: fix compiler warning [-Wunused-parameter]
Reported-by: L A Walsh <lkml@tlinx.org> Signed-off-by: Karel Zak <kzak@redhat.com>
Diffstat (limited to 'libfdisk/src')
-rw-r--r--libfdisk/src/bsd.c4
-rw-r--r--libfdisk/src/dos.c4
-rw-r--r--libfdisk/src/gpt.c4
-rw-r--r--libfdisk/src/sgi.c4
-rw-r--r--libfdisk/src/sun.c4
5 files changed, 5 insertions, 15 deletions
diff --git a/libfdisk/src/bsd.c b/libfdisk/src/bsd.c
index 6fe9c2a6d..9ba3140f1 100644
--- a/libfdisk/src/bsd.c
+++ b/libfdisk/src/bsd.c
@@ -1028,13 +1028,11 @@ static const struct fdisk_field bsd_fields[] =
/*
* allocates BSD label driver
*/
-struct fdisk_label *fdisk_new_bsd_label(struct fdisk_context *cxt)
+struct fdisk_label *fdisk_new_bsd_label(struct fdisk_context *cxt __attribute__ ((__unused__)))
{
struct fdisk_label *lb;
struct fdisk_bsd_label *bsd;
- assert(cxt);
-
bsd = calloc(1, sizeof(*bsd));
if (!bsd)
return NULL;
diff --git a/libfdisk/src/dos.c b/libfdisk/src/dos.c
index 0acd041f7..41784053c 100644
--- a/libfdisk/src/dos.c
+++ b/libfdisk/src/dos.c
@@ -2464,13 +2464,11 @@ static const struct fdisk_label_operations dos_operations =
/*
* allocates DOS in-memory stuff
*/
-struct fdisk_label *fdisk_new_dos_label(struct fdisk_context *cxt)
+struct fdisk_label *fdisk_new_dos_label(struct fdisk_context *cxt __attribute__ ((__unused__)))
{
struct fdisk_label *lb;
struct fdisk_dos_label *dos;
- assert(cxt);
-
dos = calloc(1, sizeof(*dos));
if (!dos)
return NULL;
diff --git a/libfdisk/src/gpt.c b/libfdisk/src/gpt.c
index 024a7695b..aa544f666 100644
--- a/libfdisk/src/gpt.c
+++ b/libfdisk/src/gpt.c
@@ -3140,13 +3140,11 @@ static const struct fdisk_field gpt_fields[] =
/*
* allocates GPT in-memory stuff
*/
-struct fdisk_label *fdisk_new_gpt_label(struct fdisk_context *cxt)
+struct fdisk_label *fdisk_new_gpt_label(struct fdisk_context *cxt __attribute__ ((__unused__)))
{
struct fdisk_label *lb;
struct fdisk_gpt_label *gpt;
- assert(cxt);
-
gpt = calloc(1, sizeof(*gpt));
if (!gpt)
return NULL;
diff --git a/libfdisk/src/sgi.c b/libfdisk/src/sgi.c
index b17bb4245..fd40f533f 100644
--- a/libfdisk/src/sgi.c
+++ b/libfdisk/src/sgi.c
@@ -1178,13 +1178,11 @@ static const struct fdisk_label_operations sgi_operations =
};
/* Allocates an SGI label driver. */
-struct fdisk_label *fdisk_new_sgi_label(struct fdisk_context *cxt)
+struct fdisk_label *fdisk_new_sgi_label(struct fdisk_context *cxt __attribute__ ((__unused__)))
{
struct fdisk_label *lb;
struct fdisk_sgi_label *sgi;
- assert(cxt);
-
sgi = calloc(1, sizeof(*sgi));
if (!sgi)
return NULL;
diff --git a/libfdisk/src/sun.c b/libfdisk/src/sun.c
index 7257081f3..30e6b7f1e 100644
--- a/libfdisk/src/sun.c
+++ b/libfdisk/src/sun.c
@@ -1149,13 +1149,11 @@ static const struct fdisk_label_operations sun_operations =
/*
* allocates SUN label driver
*/
-struct fdisk_label *fdisk_new_sun_label(struct fdisk_context *cxt)
+struct fdisk_label *fdisk_new_sun_label(struct fdisk_context *cxt __attribute__ ((__unused__)))
{
struct fdisk_label *lb;
struct fdisk_sun_label *sun;
- assert(cxt);
-
sun = calloc(1, sizeof(*sun));
if (!sun)
return NULL;