summaryrefslogtreecommitdiffstats
path: root/src/tss.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/tss.c')
-rw-r--r--src/tss.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tss.c b/src/tss.c
index 7a0b5cd..62c08b6 100644
--- a/src/tss.c
+++ b/src/tss.c
@@ -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();