mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2024-11-11 10:14:34 +08:00
Code cleaning
This commit is contained in:
parent
95fd247e10
commit
88df59722e
1 changed files with 1 additions and 1 deletions
|
@ -1299,7 +1299,7 @@ static int CmdHF15CSetUID(const char *Cmd) {
|
|||
return 1;
|
||||
}
|
||||
|
||||
if (strcmp(sprint_hex_inrow_ex(uid, 1, 2), "E0") != 0) {
|
||||
if (uid[0] != 0xe0) {
|
||||
PrintAndLogEx(WARNING, "UID must begin with the byte 'E0'");
|
||||
return 1;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue