mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-01-15 12:40:20 +08:00
fix: 'hf 15 write' - faulty string formatter token
This commit is contained in:
parent
845496b625
commit
77f4492433
1 changed files with 1 additions and 1 deletions
|
@ -1241,7 +1241,7 @@ int CmdHF15Write(const char *Cmd) {
|
||||||
AddCrc(req, reqlen);
|
AddCrc(req, reqlen);
|
||||||
c.arg[0] = reqlen+2;
|
c.arg[0] = reqlen+2;
|
||||||
|
|
||||||
PrintAndLogEx(NORMAL, "iso15693 writing to page %02d (0x&02X) | data ", pagenum, pagenum);
|
PrintAndLogEx(NORMAL, "iso15693 writing to page %02d (0x%02X) | data ", pagenum, pagenum);
|
||||||
|
|
||||||
clearCommandBuffer();
|
clearCommandBuffer();
|
||||||
SendCommand(&c);
|
SendCommand(&c);
|
||||||
|
|
Loading…
Reference in a new issue