summaryrefslogtreecommitdiffstats
path: root/src/restore.c
diff options
context:
space:
mode:
authorGravatar Nikias Bassen2025-07-01 03:26:42 +0200
committerGravatar Nikias Bassen2025-07-01 03:26:42 +0200
commite574eaeb9f1055793dd276caaa75ce9449db3fed (patch)
treed2178321ff37293fab4e5bde8a05b48e9ad2ca04 /src/restore.c
parent460d8f14a1a343351a212ba96e16157cdc88d069 (diff)
downloadidevicerestore-e574eaeb9f1055793dd276caaa75ce9449db3fed.tar.gz
idevicerestore-e574eaeb9f1055793dd276caaa75ce9449db3fed.tar.bz2
Silence more compiler warnings
Diffstat (limited to 'src/restore.c')
-rw-r--r--src/restore.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/restore.c b/src/restore.c
index bb4bbb5..aa9bf89 100644
--- a/src/restore.c
+++ b/src/restore.c
@@ -5083,7 +5083,7 @@ static void _restore_calculate_recovery_os_partition_size(struct idevicerestore_
const char* path = plist_get_string_ptr(p_path, NULL);
uint64_t fsize = 0;
if (ipsw_get_file_size(client->ipsw, path, &fsize) == 0) {
- logger(LL_DEBUG, "%s: Adding %s (%s, %llu bytes)\n", __func__, component, path, fsize);
+ logger(LL_DEBUG, "%s: Adding %s (%s, %" PRIu64 " bytes)\n", __func__, component, path, fsize);
total_size += (double)fsize / 0x100000;
}
}