mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-02-13 10:43:01 +08:00
fix: 'hf mf fchk' - wrong number of params to printf
This commit is contained in:
parent
f04723d3f5
commit
08c65427bc
1 changed files with 1 additions and 1 deletions
|
@ -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 ) {
|
||||
|
|
Loading…
Reference in a new issue