diff options
author | selsta <selsta@sent.at> | 2021-10-29 17:55:14 +0200 |
---|---|---|
committer | selsta <selsta@sent.at> | 2021-10-29 17:55:51 +0200 |
commit | 548cfc8d68d86edddb808440ecafb4e1b169254d (patch) | |
tree | 555b0634c2a7ada73ea3fcecb5b80bc6078a1db6 /src | |
parent | Merge pull request #8019 (diff) | |
download | monero-548cfc8d68d86edddb808440ecafb4e1b169254d.tar.xz |
crypto: fix typo in ifdef
Diffstat (limited to 'src')
-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; |