summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--string.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/string.c b/string.c
index fe85148d8..7781fa4b7 100644
--- a/string.c
+++ b/string.c
@@ -2038,7 +2038,9 @@ hash(const unsigned char * data, int len, unsigned int h)
#if MURMUR == 1
h = murmur_step(h, t);
#elif MURMUR == 2
+# if !UNALIGNED_WORD_ACCESS
skip_tail:
+# endif
h ^= t;
h *= MurmurMagic;
#endif