From 4f2d86558e361770f3f7167d20d332ded6e97d1a Mon Sep 17 00:00:00 2001 From: DidierA Date: Sat, 5 Nov 2022 20:20:01 +0100 Subject: [PATCH] correct wrong type in formatting function --- client/src/cmdhfmf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/cmdhfmf.c b/client/src/cmdhfmf.c index a4269326d..222d0f961 100644 --- a/client/src/cmdhfmf.c +++ b/client/src/cmdhfmf.c @@ -6961,7 +6961,7 @@ static int CmdHF14AGen4Load(const char *cmd) { PrintAndLogEx(INFO, "File: " _YELLOW_("%s"), filename); PrintAndLogEx(INFO, "File size %zu bytes, file blocks %d (0x%x)", bytes_read, block_cnt, block_cnt); } else { - PrintAndLogEx(INFO, "Read %zu blocks from emulator memory", block_cnt); + PrintAndLogEx(INFO, "Read %d blocks from emulator memory", block_cnt); } }