From 7fd73005b3104bd8b189b8e51264eb1507f54181 Mon Sep 17 00:00:00 2001 From: Teredic <40125338+Teredic@users.noreply.github.com> Date: Sat, 1 Feb 2020 09:20:04 +0100 Subject: [PATCH] fixed a little typo --- src/crypto/defyx/yescrypt-best.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/crypto/defyx/yescrypt-best.c b/src/crypto/defyx/yescrypt-best.c index 69eb378d..818f689c 100644 --- a/src/crypto/defyx/yescrypt-best.c +++ b/src/crypto/defyx/yescrypt-best.c @@ -1,6 +1,6 @@ #ifdef __ARM_NEON__ #include "yescrypt-neon.c" -#elif defined __SSE__ +#elif defined __SSE2__ #include "yescrypt-simd.c" #else #include "yescrypt-opt.c"