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