From e70bc3d369e5c8bde1a796455eddb46a7c6473ef Mon Sep 17 00:00:00 2001 From: Riccardo Spagni Date: Tue, 27 Jan 2015 09:15:14 +0200 Subject: [PATCH] fixed sse2 ifdef --- src/crypto/slow-hash.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/crypto/slow-hash.c b/src/crypto/slow-hash.c index 2b9cb0ee5..301aa3186 100644 --- a/src/crypto/slow-hash.c +++ b/src/crypto/slow-hash.c @@ -37,9 +37,9 @@ #include "hash-ops.h" #include "oaes_lib.h" -#ifndef __SSE2__ +#ifdef __SSE2__ #include -#else +#endif #if defined(_MSC_VER) #include