From 89a0b3138096d86c1fdd48b82118d31a735a5565 Mon Sep 17 00:00:00 2001 From: selsta Date: Fri, 29 Oct 2021 17:58:53 +0200 Subject: [PATCH] crypto: fix typo in ifdef --- src/crypto/slow-hash.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/crypto/slow-hash.c b/src/crypto/slow-hash.c index 11216175f..53628ab18 100644 --- a/src/crypto/slow-hash.c +++ b/src/crypto/slow-hash.c @@ -1070,7 +1070,7 @@ union cn_slow_hash_state STATIC INLINE int check_aes_hw(void) { -#ifdef __APPLE___ +#ifdef __APPLE__ return 1; #else static int supported = -1;