mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-25 23:55:25 -07:00
small fix
This commit is contained in:
parent
a93fb00afb
commit
8318afdb60
1 changed files with 2 additions and 2 deletions
|
@ -388,8 +388,8 @@ void CIPURSEPrintART(uint8_t *artrec, size_t artlen) {
|
||||||
else
|
else
|
||||||
PrintAndLogEx(INFO, "key %d : " NOLF, i);
|
PrintAndLogEx(INFO, "key %d : " NOLF, i);
|
||||||
|
|
||||||
for (int n = 0; n < 8; n++)
|
for (int n = 7; n >= 0; n--)
|
||||||
if ((artrec[i] >> n) && 0x01)
|
if ((artrec[i] >> n) & 0x01)
|
||||||
PrintAndLogEx(NORMAL, "%d " NOLF, n + 1);
|
PrintAndLogEx(NORMAL, "%d " NOLF, n + 1);
|
||||||
else
|
else
|
||||||
PrintAndLogEx(NORMAL, " " NOLF);
|
PrintAndLogEx(NORMAL, " " NOLF);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue