From: Zbigniew Jędrzejewski-Szmek Date: Wed, 1 Feb 2017 00:35:04 +0000 (-0500) Subject: MurmurHash: all /* fall through */ comments X-Git-Tag: v233~190^2~1 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2c5248e2454da53dd7378d167324e917bbe99088;p=thirdparty%2Fsystemd.git MurmurHash: all /* fall through */ comments --- diff --git a/src/basic/MurmurHash2.c b/src/basic/MurmurHash2.c index 90207939307..a282a212014 100644 --- a/src/basic/MurmurHash2.c +++ b/src/basic/MurmurHash2.c @@ -69,9 +69,9 @@ uint32_t MurmurHash2 ( const void * key, int len, uint32_t seed ) switch(len) { - case 3: h ^= data[2] << 16; - case 2: h ^= data[1] << 8; - case 1: h ^= data[0]; + case 3: h ^= data[2] << 16; /* fall through */ + case 2: h ^= data[1] << 8; /* fall through */ + case 1: h ^= data[0]; /* fall through */ h *= m; };