X-Git-Url: https://git.kernel.dk/?a=blobdiff_plain;ds=sidebyside;f=crc%2Fmurmur3.c;h=08660bc8cb4a7e4b4308e8e6ce905eb6015448b3;hb=HEAD;hp=ba408a9e80c8df60f8a9466cb862024cdad69135;hpb=a7194b2d3d427e7e5678c55a128639df9caf4a48;p=fio.git diff --git a/crc/murmur3.c b/crc/murmur3.c index ba408a9e..08660bc8 100644 --- a/crc/murmur3.c +++ b/crc/murmur3.c @@ -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;