liblzma: Silence a warning from MSVC.
commit718b22a6c5e3ee5de123323ea798872381f9320e
authorLasse Collin <lasse.collin@tukaani.org>
Thu, 16 Feb 2023 15:59:50 +0000 (16 17:59 +0200)
committerLasse Collin <lasse.collin@tukaani.org>
Thu, 16 Feb 2023 15:59:50 +0000 (16 17:59 +0200)
treedfa3d5581788797423ad56021a7cb6ed6ea18b2d
parent87c53553fa7d50f777b4edfa99f2083628f590fe
liblzma: Silence a warning from MSVC.

It gives C4146 here since unary minus with unsigned integer
is still unsigned (which is the intention here). Doing it
with substraction makes it clearer and avoids the warning.

Thanks to Nathan Moinvaziri for reporting this.
src/liblzma/check/crc64_fast.c