summaryrefslogtreecommitdiffstats
path: root/include/jhash.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/jhash.h')
-rw-r--r--include/jhash.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/jhash.h b/include/jhash.h
index d164e38..9793452 100644
--- a/include/jhash.h
+++ b/include/jhash.h
@@ -106,7 +106,7 @@ static inline u32 jhash2(const u32 *k, u32 length, u32 initval)
c += length * 4;
switch (len) {
- case 2 : b += k[1];
+ case 2 : b += k[1]; /* fall through */
case 1 : a += k[0];
};