From d791ada2968b561d1aba03b4b9a4cf9cc25c4ab2 Mon Sep 17 00:00:00 2001 From: Brian Aker Date: Tue, 20 Nov 2012 05:36:36 -0500 Subject: [PATCH] lp:1079994 --- libhashkit/jenkins.cc | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/libhashkit/jenkins.cc b/libhashkit/jenkins.cc index 77f99f0d..2001cab4 100644 --- a/libhashkit/jenkins.cc +++ b/libhashkit/jenkins.cc @@ -96,12 +96,14 @@ In which case, the hash table should have hashsize(10) elements. uint32_t hashkit_jenkins(const char *key, size_t length, void *) { uint32_t a,b,c; /* internal state */ - union { const void *ptr; size_t i; } u; /* needed for Mac Powerbook G4 */ +#ifndef WORDS_BIGENDIAN + union { const void *ptr; size_t i; } u; + u.ptr = key; +#endif /* Set up the internal state */ a = b = c = 0xdeadbeef + ((uint32_t)length) + JENKINS_INITVAL; - u.ptr = key; #ifndef WORDS_BIGENDIAN if ((u.i & 0x3) == 0) { -- 2.30.2