mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2026-05-12 11:18:11 -07:00
take care of type when shifting
This commit is contained in:
+1
-1
@@ -63,7 +63,7 @@
|
||||
#endif
|
||||
|
||||
#ifndef REV64
|
||||
#define REV64(x) (REV32(x) + (REV32((x) >> 32) << 32))
|
||||
#define REV64(x) (REV32(x) + ((uint64_t)(REV32((x) >> 32) << 32)))
|
||||
#endif
|
||||
|
||||
#ifndef BIT32
|
||||
|
||||
Reference in New Issue
Block a user