From 3aa16b63e834026003d57d5328adf2ec9a69a9b5 Mon Sep 17 00:00:00 2001 From: Ivan Nardi <12729895+IvanNardi@users.noreply.github.com> Date: Mon, 4 Jan 2021 15:49:39 +0100 Subject: Fix some warnings when compiling with "-W -Wall" flags (#1103) --- src/lib/third_party/src/hll/MurmurHash3.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/lib/third_party') diff --git a/src/lib/third_party/src/hll/MurmurHash3.c b/src/lib/third_party/src/hll/MurmurHash3.c index 47fb9da14..ba4d60680 100644 --- a/src/lib/third_party/src/hll/MurmurHash3.c +++ b/src/lib/third_party/src/hll/MurmurHash3.c @@ -39,8 +39,10 @@ u_int32_t MurmurHash3_x86_32(const void *key, u_int32_t len, u_int32_t seed) { { case 3: k1 ^= (u_int32_t)tail[2] << 16; + /* fall-through */ case 2: k1 ^= (u_int32_t)tail[1] << 8; + /* fall-through */ case 1: k1 ^= tail[0]; k1 *= c1; -- cgit v1.2.3