Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit b2c0002

Browse files
committed
Added /*fall through*/ comments to fix warnings
1 parent d2b179f commit b2c0002

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

vops.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1495,9 +1495,11 @@ static uint32 murmur_hash3_32(const void* key, const int len, const uint32 seed)
14951495
case 3:
14961496
k1 ^= tail[2] << 16;
14971497
/* no break */
1498+
/* fall through */
14981499
case 2:
14991500
k1 ^= tail[1] << 8;
15001501
/* no break */
1502+
/* fall through */
15011503
case 1:
15021504
k1 ^= tail[0];
15031505
k1 *= c1;

0 commit comments

Comments
 (0)