diff options
author | 2012-02-12 20:30:22 +0100 | |
---|---|---|
committer | 2012-02-12 20:30:22 +0100 | |
commit | 23abb2405f3401690fef892425afbb364bef3b93 (patch) | |
tree | 6466d3921a15194e8d1dea242063d4d161f8bc42 /src/tss.c | |
parent | 8072f14f4706a4d3b46e8a88cfbcfdd205435868 (diff) | |
download | idevicerestore-23abb2405f3401690fef892425afbb364bef3b93.tar.gz idevicerestore-23abb2405f3401690fef892425afbb364bef3b93.tar.bz2 |
use format string defines since win32 doesn't like %qu
Diffstat (limited to 'src/tss.c')
-rw-r--r-- | src/tss.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -83,7 +83,7 @@ plist_t tss_create_request(plist_t build_identity, uint64_t ecid, unsigned char* error("ERROR: Unable to get ECID\n"); return NULL; } - snprintf(ecid_string, ECID_STRSIZE, "%qu", (long long unsigned int)ecid); + snprintf(ecid_string, ECID_STRSIZE, FMT_qu, (long long unsigned int)ecid); // Add build information to TSS request plist_t tss_request = plist_new_dict(); |