From b01e7d206dcb98f1549df1ace52bfc8ce2719b1e Mon Sep 17 00:00:00 2001
From: iceman1001 <iceman@iuse.se>
Date: Fri, 6 May 2016 19:30:43 +0200
Subject: [PATCH] FIX:  a define which was wrong

---
 client/cmdhfmfhard.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/client/cmdhfmfhard.c b/client/cmdhfmfhard.c
index 2cec9b7c9..12a362956 100644
--- a/client/cmdhfmfhard.c
+++ b/client/cmdhfmfhard.c
@@ -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);
 	#endif
 #else
-	#ifdef  defined(__APPLE__)
+	#ifdef __APPLE__
 		bitslice_t * restrict lstate_p = malloc((STATE_SIZE+ROLLBACK_SIZE) * bSize);
 	#else
 		bitslice_t * restrict lstate_p = memalign(bSize, (STATE_SIZE+ROLLBACK_SIZE) * bSize);