mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-04-03 19:09:57 +08:00
FIX: a define which was wrong
This commit is contained in:
parent
9d590832a1
commit
b01e7d206d
1 changed files with 1 additions and 1 deletions
|
@ -1399,7 +1399,7 @@ static const uint64_t crack_states_bitsliced(statelist_t *p){
|
||||||
bitslice_t * restrict lstate_p = _aligned_malloc((STATE_SIZE+ROLLBACK_SIZE) * bSize, bSize);
|
bitslice_t * restrict lstate_p = _aligned_malloc((STATE_SIZE+ROLLBACK_SIZE) * bSize, bSize);
|
||||||
#endif
|
#endif
|
||||||
#else
|
#else
|
||||||
#ifdef defined(__APPLE__)
|
#ifdef __APPLE__
|
||||||
bitslice_t * restrict lstate_p = malloc((STATE_SIZE+ROLLBACK_SIZE) * bSize);
|
bitslice_t * restrict lstate_p = malloc((STATE_SIZE+ROLLBACK_SIZE) * bSize);
|
||||||
#else
|
#else
|
||||||
bitslice_t * restrict lstate_p = memalign(bSize, (STATE_SIZE+ROLLBACK_SIZE) * bSize);
|
bitslice_t * restrict lstate_p = memalign(bSize, (STATE_SIZE+ROLLBACK_SIZE) * bSize);
|
||||||
|
|
Loading…
Add table
Reference in a new issue