Fix warnings on non-x86_64 systems
[lttng-ust.git] / src / common / hash.h
index c3ffc18d032eb2bb47d862e6e96a8a3b661d1a44..5002915ead01784ab9ccb58a2d5e1e4fed5c7915 100644 (file)
@@ -69,8 +69,8 @@ uint32_t lttng_hash_u32(
 
        /*----------------------------------- handle the last 3 uint32_t's */
        switch (length) {       /* all the case statements fall through */
-       case 3: c += k[2];
-       case 2: b += k[1];
+       case 3: c += k[2];      /* fall through */
+       case 2: b += k[1];      /* fall through */
        case 1: a += k[0];
                final(a, b, c);
        case 0:                 /* case 0: nothing left to add */
This page took 0.023022 seconds and 4 git commands to generate.