diff options
author | luigi1111 <luigi1111w@gmail.com> | 2021-11-01 12:32:24 -0500 |
---|---|---|
committer | luigi1111 <luigi1111w@gmail.com> | 2021-11-01 12:32:24 -0500 |
commit | e22ec26be4c9fa7c67a5c8bbc60119c77ac08376 (patch) | |
tree | 61b2d3e76e2abba95f82f9a4a587060a65abef6f /src | |
parent | Merge pull request #8020 (diff) | |
parent | crypto: fix typo in ifdef (diff) | |
download | monero-e22ec26be4c9fa7c67a5c8bbc60119c77ac08376.tar.xz |
Merge pull request #8029
548cfc8 crypto: fix typo in ifdef (selsta)
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; |