Added missing "fall through" comments to make GCC 7 happy.
This commit is contained in:
@@ -37,8 +37,10 @@ nxt_murmur_hash2(const void *data, size_t len)
|
||||
switch (len) {
|
||||
case 3:
|
||||
h ^= p[2] << 16;
|
||||
/* Fall through. */
|
||||
case 2:
|
||||
h ^= p[1] << 8;
|
||||
/* Fall through. */
|
||||
case 1:
|
||||
h ^= p[0];
|
||||
h *= m;
|
||||
|
||||
Reference in New Issue
Block a user