diff options
author | selsta <selsta@sent.at> | 2021-10-29 17:58:53 +0200 |
---|---|---|
committer | selsta <selsta@sent.at> | 2021-10-29 17:58:53 +0200 |
commit | 89a0b3138096d86c1fdd48b82118d31a735a5565 (patch) | |
tree | d531d3b066bb378206d84fa5a99bd344bde5062c /src/crypto/slow-hash.c | |
parent | Merge pull request #8005 (diff) | |
download | monero-89a0b3138096d86c1fdd48b82118d31a735a5565.tar.xz |
crypto: fix typo in ifdef
Diffstat (limited to 'src/crypto/slow-hash.c')
-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; |