Loading fs/bcachefs/varint.c +1 −1 Original line number Diff line number Diff line Loading @@ -85,7 +85,7 @@ int bch2_varint_encode_fast(u8 *out, u64 v) if (likely(bytes < 9)) { v <<= bytes; v |= ~(~0 << (bytes - 1)); v |= ~(~0U << (bytes - 1)); } else { *out++ = 255; bytes = 9; Loading Loading
fs/bcachefs/varint.c +1 −1 Original line number Diff line number Diff line Loading @@ -85,7 +85,7 @@ int bch2_varint_encode_fast(u8 *out, u64 v) if (likely(bytes < 9)) { v <<= bytes; v |= ~(~0 << (bytes - 1)); v |= ~(~0U << (bytes - 1)); } else { *out++ = 255; bytes = 9; Loading