mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-20 13:23:51 -07:00
shadowing
This commit is contained in:
parent
ef610f373a
commit
c65d782d73
1 changed files with 2 additions and 2 deletions
|
@ -692,8 +692,8 @@ int CmdHF14ACUIDs(const char *Cmd) {
|
||||||
PrintAndLogEx(WARNING, "card select failed.");
|
PrintAndLogEx(WARNING, "card select failed.");
|
||||||
} else {
|
} else {
|
||||||
char uid_string[20];
|
char uid_string[20];
|
||||||
for (uint16_t i = 0; i < card->uidlen; i++) {
|
for (uint16_t m = 0; m < card->uidlen; m++) {
|
||||||
sprintf(&uid_string[2 * i], "%02X", card->uid[i]);
|
sprintf(&uid_string[2 * m], "%02X", card->uid[m]);
|
||||||
}
|
}
|
||||||
PrintAndLogEx(NORMAL, "%s", uid_string);
|
PrintAndLogEx(NORMAL, "%s", uid_string);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue