From f8777097d13f3eb47284c32fceb44e8db20491c2 Mon Sep 17 00:00:00 2001 From: Sadie Powell Date: Wed, 7 Oct 2020 12:46:37 +0100 Subject: [PATCH] Fix last case check for le64toh. --- src/siphash.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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