From 48a872bd526ad4706da46c0de1be7ec593895c6b Mon Sep 17 00:00:00 2001 From: iceman1001 Date: Sat, 29 Jan 2022 11:03:30 +0100 Subject: [PATCH] string formatter --- tools/mfd_aes_brute/brute_key.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/mfd_aes_brute/brute_key.c b/tools/mfd_aes_brute/brute_key.c index 58fdb86d5..00db53074 100644 --- a/tools/mfd_aes_brute/brute_key.c +++ b/tools/mfd_aes_brute/brute_key.c @@ -149,7 +149,7 @@ int main (int argc, char* argv[]) { if (dec_tag[15] != dec_rdr[30]) continue; - printf("\btimestamp: %i\nkey: ", timestamp); + printf("\btimestamp: %lu\nkey: ", timestamp); for (int i = 0; i < 16; i++) { printf("%02x", key[i]); }