mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-03-03 19:43:09 +08:00
take care of type when shifting
This commit is contained in:
parent
11695eb55c
commit
7f14ebc84b
1 changed files with 1 additions and 1 deletions
|
@ -63,7 +63,7 @@
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef REV64
|
#ifndef REV64
|
||||||
#define REV64(x) (REV32(x) + (REV32((x) >> 32) << 32))
|
#define REV64(x) (REV32(x) + ((uint64_t)(REV32((x) >> 32) << 32)))
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef BIT32
|
#ifndef BIT32
|
||||||
|
|
Loading…
Reference in a new issue