mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-02-15 19:59:34 +08:00
cppchecker - signed shift
This commit is contained in:
parent
43e1c5f22d
commit
bf597dd2d2
1 changed files with 1 additions and 1 deletions
|
@ -144,7 +144,7 @@ static int CmdKeriMSScramble (KeriMSScramble_t Action, uint32_t *FC, uint32_t *I
|
||||||
*CardID = *CardID | Parity;
|
*CardID = *CardID | Parity;
|
||||||
|
|
||||||
// Bit 31 was fixed but not in check/parity bits
|
// Bit 31 was fixed but not in check/parity bits
|
||||||
*CardID |= (1 << 31);
|
*CardID |= (uint32_t)(1 << 31);
|
||||||
|
|
||||||
PrintAndLogEx(SUCCESS, "Scrambled FC : %d - Card ID : %d to RAW : E0000000%08X",*FC,*ID,*CardID);
|
PrintAndLogEx(SUCCESS, "Scrambled FC : %d - Card ID : %d to RAW : E0000000%08X",*FC,*ID,*CardID);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue