mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-01-09 17:56:53 +08:00
FIX: CoverityScan 133857, cast to uint32_t will stop eventual problems. However its a uint_16 so it shouldnt be a problem to start with.
This commit is contained in:
parent
34c81fe01c
commit
fd9212e183
1 changed files with 1 additions and 1 deletions
|
@ -171,7 +171,7 @@ int CmdLFCommandRead(const char *Cmd) {
|
|||
if (errors) return usage_lf_cmdread();
|
||||
|
||||
// zero and one lengths
|
||||
c.arg[1] = zero << 16 | one;
|
||||
c.arg[1] = (uint32_t)(zero << 16 | one);
|
||||
|
||||
// add frequency 125 or 134
|
||||
c.arg[2] = useHighFreq;
|
||||
|
|
Loading…
Reference in a new issue