diff options
author | Lasse Collin <lasse.collin@tukaani.org> | 2019-06-23 21:38:56 +0300 |
---|---|---|
committer | Lasse Collin <lasse.collin@tukaani.org> | 2019-06-23 21:38:56 +0300 |
commit | dfac2c9a1d7d4a2b8a5d7c9c6d567dee48318bcf (patch) | |
tree | a7f2f8d656bb83f7c6d31e292505d90ba1c980d1 /src/liblzma/simple/ia64.c | |
parent | tuklib_integer: Silence warnings from -Wsign-conversion. (diff) | |
download | xz-dfac2c9a1d7d4a2b8a5d7c9c6d567dee48318bcf.tar.xz |
liblzma: Fix warnings from -Wsign-conversion.
Also, more parentheses were added to the literal_subcoder
macro in lzma_comon.h (better style but no functional change
in the current usage).
Diffstat (limited to '')
-rw-r--r-- | src/liblzma/simple/ia64.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/liblzma/simple/ia64.c b/src/liblzma/simple/ia64.c index 580529e8..6492d0a3 100644 --- a/src/liblzma/simple/ia64.c +++ b/src/liblzma/simple/ia64.c @@ -70,7 +70,7 @@ ia64_code(void *simple lzma_attribute((__unused__)), inst_norm |= (uint64_t)(dest & 0x100000) << (36 - 20); - instruction &= (1 << bit_res) - 1; + instruction &= (1U << bit_res) - 1; instruction |= (inst_norm << bit_res); for (size_t j = 0; j < 6; j++) |