diff options
author | Nikias Bassen | 2020-04-13 01:18:56 +0200 |
---|---|---|
committer | Nikias Bassen | 2020-04-13 01:18:56 +0200 |
commit | 05f543df0147c61cb5900586512c882d276d0ed6 (patch) | |
tree | 5ab0a43aca37900cc1b0820812d72178ac5d11ea | |
parent | 2398d20c63134a51b173001f303cd7dec278f6bd (diff) | |
download | idevicerestore-05f543df0147c61cb5900586512c882d276d0ed6.tar.gz idevicerestore-05f543df0147c61cb5900586512c882d276d0ed6.tar.bz2 |
restore: Fix several format string compiler warnings
-rw-r--r-- | src/restore.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/restore.c b/src/restore.c index 4e62d58..3836f2e 100644 --- a/src/restore.c +++ b/src/restore.c @@ -28,6 +28,7 @@ #include <stdlib.h> #include <string.h> #include <unistd.h> +#include <inttypes.h> #include <libimobiledevice/restore.h> #include <zip.h> #include <libirecovery.h> @@ -1941,7 +1942,7 @@ static plist_t restore_get_se_firmware_data(restored_client_t restore, struct id } else if (chip_id == 0x73 || chip_id == 0x64 || chip_id == 0xC8) { comp_name = "SE,UpdatePayload"; } else { - info("WARNING: Unknown SE,ChipID 0x%x detected. Restore might fail.\n", chip_id); + info("WARNING: Unknown SE,ChipID 0x%" PRIx64 " detected. Restore might fail.\n", (unsigned long long)chip_id); if (build_identity_has_component(build_identity, "SE,UpdatePayload")) comp_name = "SE,UpdatePayload"; else if (build_identity_has_component(build_identity, "SE,Firmware")) @@ -2262,7 +2263,7 @@ static plist_t restore_get_rose_firmware_data(restored_client_t restore, struct } if (ftab_parse(component_data, component_size, &ftab, &ftag) != 0) { free(component_data); - error("ERROR: Failed to parse '%s' component data.\n"); + error("ERROR: Failed to parse '%s' component data.\n", comp_name); return NULL; } free(component_data); @@ -2292,7 +2293,7 @@ static plist_t restore_get_rose_firmware_data(restored_client_t restore, struct if (ftab_parse(component_data, component_size, &rftab, &ftag) != 0) { free(component_data); ftab_free(ftab); - error("ERROR: Failed to parse '%s' component data.\n"); + error("ERROR: Failed to parse '%s' component data.\n", comp_name); return NULL; } free(component_data); @@ -2435,7 +2436,7 @@ static int restore_send_firmware_updater_data(restored_client_t restore, struct int restore_error; if (idevicerestore_debug) { - debug("DEBUG: Got FirmwareUpdaterData request:\n", __func__); + debug("DEBUG: %s: Got FirmwareUpdaterData request:\n", __func__); debug_plist(message); } |