mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-15 19:17:26 -07:00
clang...
This commit is contained in:
parent
dacd63f18e
commit
15d14f8259
2 changed files with 9 additions and 7 deletions
|
@ -29,7 +29,7 @@ static inline uint8_t evenparity32(uint32_t x) {
|
|||
x ^= x >> 8;
|
||||
return evenparity8(x);
|
||||
#else
|
||||
return __builtin_parity(x);
|
||||
return (__builtin_parity(x) & 0xFF);
|
||||
#endif
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue