From 91175c8d6bcebc5e847f1c8503e064fd6b05c118 Mon Sep 17 00:00:00 2001 From: Nikias Bassen Date: Mon, 13 Apr 2020 01:11:18 +0200 Subject: img3: Remove unused format string argument --- src/img3.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/img3.c b/src/img3.c index 1c70df2..c58d8a3 100644 --- a/src/img3.c +++ b/src/img3.c @@ -422,7 +422,7 @@ int img3_stitch_component(const char* component_name, const unsigned char* compo } if (((img3_element_header*)blob)->full_size != blob_size) { - error("ERROR: Invalid blob passed for %s IMG3: The size %d embedded in the blob does not match the passed size of %d\n", component_name, ((img3_element_header*)blob)->full_size, blob_size, component_name); + error("ERROR: Invalid blob passed for %s IMG3: The size %d embedded in the blob does not match the passed size of %d\n", component_name, ((img3_element_header*)blob)->full_size, blob_size); img3_free(img3); return -1; } -- cgit v1.1-32-gdbae