From 218fd38b273bd147cf38d79cf7b70da537225be0 Mon Sep 17 00:00:00 2001 From: Nikias Bassen Date: Thu, 2 Feb 2012 02:12:40 +0100 Subject: main: suppress compiler warning with cast --- src/idevicerestore.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/idevicerestore.c') 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"); -- cgit v1.1-32-gdbae