diff options
author | Nikias Bassen | 2012-02-02 02:12:40 +0100 |
---|---|---|
committer | Nikias Bassen | 2012-02-02 02:12:40 +0100 |
commit | 218fd38b273bd147cf38d79cf7b70da537225be0 (patch) | |
tree | ce4764b29c7b2782ce63a1b801f75008f7d72c08 | |
parent | 3494d86d2195400c683a5a378fd90c2e8e7fc449 (diff) | |
download | idevicerestore-218fd38b273bd147cf38d79cf7b70da537225be0.tar.gz idevicerestore-218fd38b273bd147cf38d79cf7b70da537225be0.tar.bz2 |
main: suppress compiler warning with cast
-rw-r--r-- | src/idevicerestore.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/idevicerestore.c b/src/idevicerestore.c index 4965ccf..c4ec2b8 100644 --- a/src/idevicerestore.c +++ b/src/idevicerestore.c @@ -213,7 +213,7 @@ int main(int argc, char* argv[]) { error("ERROR: Unable to find device ECID\n"); return -1; } - info("Found ECID %llu\n", client->ecid); + info("Found ECID %llu\n", (long long unsigned int)client->ecid); if (get_shsh_blobs(client, client->ecid, build_identity, &client->tss) < 0) { error("ERROR: Unable to get SHSH blobs for this device\n"); |