From 874e4cf2d7463f45c3bf4b7ebab669f1aabc254a Mon Sep 17 00:00:00 2001 From: Nikias Bassen Date: Tue, 21 Apr 2020 02:01:00 +0200 Subject: Use uint64_t cast for PRIx64 format specifiers --- src/libirecovery.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/libirecovery.c b/src/libirecovery.c index eff6cc3..ea60a6a 100644 --- a/src/libirecovery.c +++ b/src/libirecovery.c @@ -745,7 +745,7 @@ irecv_error_t mobiledevice_connect(irecv_client_t* client, unsigned long long ec mobiledevice_closepipes(_client); continue; } - debug("found device with ECID %016" PRIx64 "\n", (unsigned long long)ecid); + debug("found device with ECID %016" PRIx64 "\n", (uint64_t)ecid); } found = 1; break; @@ -827,7 +827,7 @@ irecv_error_t mobiledevice_connect(irecv_client_t* client, unsigned long long ec mobiledevice_closepipes(_client); continue; } - debug("found device with ECID %016" PRIx64 "\n", (unsigned long long)ecid); + debug("found device with ECID %016" PRIx64 "\n", (uint64_t)ecid); } found = 1; break; @@ -1374,7 +1374,7 @@ IRECV_API irecv_error_t irecv_open_with_ecid(irecv_client_t* pclient, unsigned l irecv_close(client); continue; } - debug("found device with ECID %016" PRIx64 "\n", (unsigned long long)ecid); + debug("found device with ECID %016" PRIx64 "\n", (uint64_t)ecid); } error = irecv_usb_set_configuration(client, 1); -- cgit v1.1-32-gdbae