From: Wouter Wijngaards Date: Mon, 25 Mar 2013 09:36:21 +0000 (+0000) Subject: Fix compile. X-Git-Tag: release-1.4.21rc1~53 X-Git-Url: http://git.ipfire.org/gitweb/?a=commitdiff_plain;h=f964e7b66739a18d824594b8c057240251e79c55;p=thirdparty%2Funbound.git Fix compile. git-svn-id: file:///svn/unbound/trunk@2873 be551aaa-1e26-0410-a405-d3ace91eadb9 --- diff --git a/util/storage/lookup3.c b/util/storage/lookup3.c index 700efb481..3ddac536b 100644 --- a/util/storage/lookup3.c +++ b/util/storage/lookup3.c @@ -86,11 +86,11 @@ hash_set_raninit(uint32_t v) # define HASH_BIG_ENDIAN 1 /* test later because it fails when they are defined to empty strings */ #elif (defined(_BYTE_ORDER) && defined(_BIG_ENDIAN) && \ - _BYTE_ORDER == _BIG_ENDIAN) || \ + _BYTE_ORDER == _BIG_ENDIAN) # define HASH_LITTLE_ENDIAN 0 # define HASH_BIG_ENDIAN 1 #elif (defined(_BYTE_ORDER) && defined(_LITTLE_ENDIAN) && \ - _BYTE_ORDER == _LITTLE_ENDIAN) || \ + _BYTE_ORDER == _LITTLE_ENDIAN) # define HASH_LITTLE_ENDIAN 1 # define HASH_BIG_ENDIAN 0 #else