mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-01-04 07:11:10 +08:00
coverity 226308 - fix logically dead code
This commit is contained in:
parent
81e7e34a24
commit
07a23b202c
1 changed files with 1 additions and 1 deletions
|
@ -133,7 +133,7 @@ ISO 7816-4 Basic interindustry commands. For command APDU's.
|
|||
#define ICLASS_CMD_READ_OR_IDENTIFY 0xC
|
||||
#define ICLASS_CMD_ACT 0xE
|
||||
|
||||
#define ICLASS_CREDIT(x) (((x) & 0x5) == 1)
|
||||
#define ICLASS_CREDIT(x) (((x) & 0x5) == 0x5)
|
||||
#define ICLASS_DEBIT(x) (((x) & 0x5) == 0)
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue