From: Brian Aker Date: Tue, 20 Nov 2012 10:36:36 +0000 (-0500) Subject: lp:1079994 X-Git-Tag: 1.0.15~18^2 X-Git-Url: https://git.m6w6.name/?a=commitdiff_plain;h=d791ada2968b561d1aba03b4b9a4cf9cc25c4ab2;p=awesomized%2Flibmemcached lp:1079994 --- 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) {