mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-21 13:53:55 -07:00
minor, to respect symmetry with writeblock
This commit is contained in:
parent
3e39689b6e
commit
bac58d2a66
1 changed files with 2 additions and 2 deletions
|
@ -472,8 +472,8 @@ void annotateIso15693(char *exp, size_t size, uint8_t *cmd, uint8_t cmdsize) {
|
||||||
uint8_t block = 0;
|
uint8_t block = 0;
|
||||||
if (cmdsize == 5)
|
if (cmdsize == 5)
|
||||||
block = cmd[2];
|
block = cmd[2];
|
||||||
else if (cmdsize == 13) // with UID
|
else if (cmdsize == 5 + 8) // with UID
|
||||||
block = cmd[10];
|
block = cmd[2 + 8];
|
||||||
|
|
||||||
snprintf(exp, size, "READBLOCK(%d)", block);
|
snprintf(exp, size, "READBLOCK(%d)", block);
|
||||||
return;
|
return;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue