diff options
author | Nikias Bassen | 2020-04-13 01:11:18 +0200 |
---|---|---|
committer | Nikias Bassen | 2020-04-13 01:11:18 +0200 |
commit | 91175c8d6bcebc5e847f1c8503e064fd6b05c118 (patch) | |
tree | 03bc80fe7780df8c0bbe284bf112ee945f8c17ed | |
parent | 8bd04f650342fd7225765ef6194c411bc54ce7e5 (diff) | |
download | idevicerestore-91175c8d6bcebc5e847f1c8503e064fd6b05c118.tar.gz idevicerestore-91175c8d6bcebc5e847f1c8503e064fd6b05c118.tar.bz2 |
img3: Remove unused format string argument
-rw-r--r-- | src/img3.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; } |