summaryrefslogtreecommitdiffstats
path: root/libfdisk/src/sgi.c
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/sgi.c
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/sgi.c')
-rw-r--r--libfdisk/src/sgi.c4
1 files changed, 1 insertions, 3 deletions
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;