From 76f9b30ea94a7f9decfd25e142e5e5f88d7cf680 Mon Sep 17 00:00:00 2001 From: Dennis Heimbigner Date: Mon, 30 Jan 2012 16:55:39 +0000 Subject: [PATCH] fix reference to hashbig --- libsrc/lookup3.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/libsrc/lookup3.c b/libsrc/lookup3.c index d39ec9024..05d04614b 100644 --- a/libsrc/lookup3.c +++ b/libsrc/lookup3.c @@ -260,6 +260,9 @@ uint32_t *pb) /* IN: more seed OUT: secondary hash value */ /*------------------------------------------------------ report the result */ *pc=c; *pb=b; } + +#ifndef WORDS_BIGENDIAN + /* * hashlittle2: return 2 32-bit hash values * @@ -446,6 +449,8 @@ hashlittle2( } +#else /*WORDS_BIGENDIAN*/ + /* * hashbig(): @@ -575,7 +580,7 @@ hashbig( const void *key, size_t length, uint32_t initval) final(a,b,c); return c; } -#endif /*SELF_TEST*/ +#endif /*WORDS_BIGENDIAN*/ /*