Rename 'fallthrough' attribute to 'fio_fallthrough'
[fio.git] / crc / murmur3.c
index ba408a9e80c8df60f8a9466cb862024cdad69135..08660bc8cb4a7e4b4308e8e6ce905eb6015448b3 100644 (file)
@@ -30,10 +30,10 @@ static uint32_t murmur3_tail(const uint8_t *data, const int nblocks,
        switch (len & 3) {
        case 3:
                k1 ^= tail[2] << 16;
-               fallthrough;
+               fio_fallthrough;
        case 2:
                k1 ^= tail[1] << 8;
-               fallthrough;
+               fio_fallthrough;
        case 1:
                k1 ^= tail[0];
                k1 *= c1;