mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-03-18 03:00:58 +08:00
fix: compare not assign
This commit is contained in:
parent
f46546c5a9
commit
b99d759231
1 changed files with 1 additions and 1 deletions
|
@ -796,7 +796,7 @@ uint32_t GetHF14AMfU_Type(void){
|
|||
else if ( memcmp(version, "\x00\x04\x04\x05\x02\x02\x13", 7) == 0) { tagtype = NTAG_I2C_1K_PLUS; break; }
|
||||
else if ( memcmp(version, "\x00\x04\x04\x05\x02\x02\x15", 7) == 0) { tagtype = NTAG_I2C_2K_PLUS; break; }
|
||||
else if ( version[2] == 0x04 ) { tagtype = NTAG; break; }
|
||||
else if ( version[2] = 0x03 ) { tagtype = UL_EV1; }
|
||||
else if ( version[2] == 0x03 ) { tagtype = UL_EV1; }
|
||||
break;
|
||||
}
|
||||
case 0x01: tagtype = UL_C; break;
|
||||
|
|
Loading…
Add table
Reference in a new issue