mirror of https://git.tukaani.org/xz.git
liblzma: Silence -Wconversion warning from crc64_fast.c.
This commit is contained in:
parent
a243c617ff
commit
48dde3bab9
|
@ -46,10 +46,11 @@ lzma_crc64(const uint8_t *buf, size_t size, uint64_t crc)
|
||||||
|
|
||||||
while (buf < limit) {
|
while (buf < limit) {
|
||||||
#ifdef WORDS_BIGENDIAN
|
#ifdef WORDS_BIGENDIAN
|
||||||
const uint32_t tmp = (crc >> 32)
|
const uint32_t tmp = (uint32_t)(crc >> 32)
|
||||||
^ aligned_read32ne(buf);
|
^ aligned_read32ne(buf);
|
||||||
#else
|
#else
|
||||||
const uint32_t tmp = crc ^ aligned_read32ne(buf);
|
const uint32_t tmp = (uint32_t)crc
|
||||||
|
^ aligned_read32ne(buf);
|
||||||
#endif
|
#endif
|
||||||
buf += 4;
|
buf += 4;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue