diff options
author | Sadie Powell <sadie@witchery.services> | 2020-10-07 12:46:37 +0100 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2020-10-07 13:15:31 +0100 |
commit | f8777097d13f3eb47284c32fceb44e8db20491c2 (patch) | |
tree | 3bfd646ba20c9fbc42633453ec0d3903d793ada4 | |
parent | a79046e025594188a1c222da653f4a9266a9a074 (diff) |
Fix last case check for le64toh.
-rw-r--r-- | src/siphash.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/siphash.cpp b/src/siphash.cpp index 796624978..03b042cb6 100644 --- a/src/siphash.cpp +++ b/src/siphash.cpp @@ -71,7 +71,7 @@ #endif // Attempt to work on unenumerated platforms. -#if defined(le64toh) && !defined(__le64toh) +#if defined(le64toh) && !defined(_le64toh) # define _le64toh le64toh #endif |