From 08c65427bcc571311a55e92f81113631684bb4d2 Mon Sep 17 00:00:00 2001 From: iceman1001 Date: Wed, 11 Oct 2017 13:24:54 +0200 Subject: [PATCH] fix: 'hf mf fchk' - wrong number of params to printf --- client/cmdhfmf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/cmdhfmf.c b/client/cmdhfmf.c index 619104cab..4e9086236 100644 --- a/client/cmdhfmf.c +++ b/client/cmdhfmf.c @@ -1376,7 +1376,7 @@ int CmdHF14AMfChk_fast(const char *Cmd) { timeout = 0; t2 = msclock() - t2; - PrintAndLog("\n[-] Chunk: %.1fs | found %u/%u keys", t2, (float)(t2/1000.0), curr_keys, (SectorsCnt<<1)); + PrintAndLog("\n[-] Chunk: %.1fs | found %u/%u keys", (float)(t2/1000.0), curr_keys, (SectorsCnt<<1)); // all keys? if ( curr_keys == SectorsCnt*2 || lastChunk ) {