aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--archival/libarchive/decompress_unlzma.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/archival/libarchive/decompress_unlzma.c b/archival/libarchive/decompress_unlzma.c
index dd08e77f3..187035daa 100644
--- a/archival/libarchive/decompress_unlzma.c
+++ b/archival/libarchive/decompress_unlzma.c
@@ -114,7 +114,7 @@ static speed_inline int rc_is_bit_1(rc_t *rc, uint16_t *p)
114} 114}
115 115
116/* Called 4 times in unlzma loop */ 116/* Called 4 times in unlzma loop */
117static speed_inline int rc_get_bit(rc_t *rc, uint16_t *p, int *symbol) 117static ALWAYS_INLINE int rc_get_bit(rc_t *rc, uint16_t *p, int *symbol)
118{ 118{
119 int ret = rc_is_bit_1(rc, p); 119 int ret = rc_is_bit_1(rc, p);
120 *symbol = *symbol * 2 + ret; 120 *symbol = *symbol * 2 + ret;