diff options
author | luigi1111 <luigi1111w@gmail.com> | 2021-11-01 12:32:49 -0500 |
---|---|---|
committer | luigi1111 <luigi1111w@gmail.com> | 2021-11-01 12:32:49 -0500 |
commit | 97b7a41bfae319d68134a8c47bbc7795dc0987d3 (patch) | |
tree | f51465fd18a21bb7038dd573680cf0c3353a243b | |
parent | Merge pull request #8014 (diff) | |
parent | crypto: fix typo in ifdef (diff) | |
download | monero-97b7a41bfae319d68134a8c47bbc7795dc0987d3.tar.xz |
Merge pull request #8030
89a0b31 crypto: fix typo in ifdef (selsta)
-rw-r--r-- | src/crypto/slow-hash.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |