summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSadie Powell <sadie@witchery.services>2020-10-07 12:46:37 +0100
committerSadie Powell <sadie@witchery.services>2020-10-07 13:15:31 +0100
commitf8777097d13f3eb47284c32fceb44e8db20491c2 (patch)
tree3bfd646ba20c9fbc42633453ec0d3903d793ada4
parenta79046e025594188a1c222da653f4a9266a9a074 (diff)
Fix last case check for le64toh.
-rw-r--r--src/siphash.cpp2
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