mirror of
https://github.com/Proxmark/proxmark3.git
synced 2025-08-19 21:03:23 -07:00
Merge pull request #351 from Fl0-0/CmdEM410xBrute_mingw_fix
Fix CmdEM410xBrute string format warning
This commit is contained in:
commit
53814fe4f2
1 changed files with 1 additions and 1 deletions
|
@ -405,7 +405,7 @@ int CmdEM410xBrute(const char *Cmd)
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
sprintf(testuid, "%010lX", bytes_to_num(uidBlock + 5*c, 5));
|
sprintf(testuid, "%010" PRIX64, bytes_to_num(uidBlock + 5*c, 5));
|
||||||
PrintAndLog("Bruteforce %d / %d: simulating UID %s, clock %d", c + 1, uidcnt, testuid, clock);
|
PrintAndLog("Bruteforce %d / %d: simulating UID %s, clock %d", c + 1, uidcnt, testuid, clock);
|
||||||
|
|
||||||
ConstructEM410xEmulGraph(testuid, clock);
|
ConstructEM410xEmulGraph(testuid, clock);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue