summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/libirecovery.c6
1 files 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
745 mobiledevice_closepipes(_client); 745 mobiledevice_closepipes(_client);
746 continue; 746 continue;
747 } 747 }
748 debug("found device with ECID %016" PRIx64 "\n", (unsigned long long)ecid); 748 debug("found device with ECID %016" PRIx64 "\n", (uint64_t)ecid);
749 } 749 }
750 found = 1; 750 found = 1;
751 break; 751 break;
@@ -827,7 +827,7 @@ irecv_error_t mobiledevice_connect(irecv_client_t* client, unsigned long long ec
827 mobiledevice_closepipes(_client); 827 mobiledevice_closepipes(_client);
828 continue; 828 continue;
829 } 829 }
830 debug("found device with ECID %016" PRIx64 "\n", (unsigned long long)ecid); 830 debug("found device with ECID %016" PRIx64 "\n", (uint64_t)ecid);
831 } 831 }
832 found = 1; 832 found = 1;
833 break; 833 break;
@@ -1374,7 +1374,7 @@ IRECV_API irecv_error_t irecv_open_with_ecid(irecv_client_t* pclient, unsigned l
1374 irecv_close(client); 1374 irecv_close(client);
1375 continue; 1375 continue;
1376 } 1376 }
1377 debug("found device with ECID %016" PRIx64 "\n", (unsigned long long)ecid); 1377 debug("found device with ECID %016" PRIx64 "\n", (uint64_t)ecid);
1378 } 1378 }
1379 1379
1380 error = irecv_usb_set_configuration(client, 1); 1380 error = irecv_usb_set_configuration(client, 1);