summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Nikias Bassen2020-04-13 01:11:18 +0200
committerGravatar Nikias Bassen2020-04-13 01:11:18 +0200
commit91175c8d6bcebc5e847f1c8503e064fd6b05c118 (patch)
tree03bc80fe7780df8c0bbe284bf112ee945f8c17ed
parent8bd04f650342fd7225765ef6194c411bc54ce7e5 (diff)
downloadidevicerestore-91175c8d6bcebc5e847f1c8503e064fd6b05c118.tar.gz
idevicerestore-91175c8d6bcebc5e847f1c8503e064fd6b05c118.tar.bz2
img3: Remove unused format string argument
-rw-r--r--src/img3.c2
1 files changed, 1 insertions, 1 deletions
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;
}