From: Lasse Collin Date: Fri, 10 May 2024 17:22:58 +0000 (+0300) Subject: xz: Fix integer type from uint64_t to uint32_t X-Git-Tag: v5.7.1alpha~317 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=31358c057c9de9d6aba96bae112b2d17942de7cb;p=thirdparty%2Fxz.git xz: Fix integer type from uint64_t to uint32_t lzma_options_lzma.dict_size is uint32_t so use it here too. Fixes: 5f0c5a04388f8334962c70bc37a8c2ff8f605e0a --- diff --git a/src/xz/coder.c b/src/xz/coder.c index 0d3dc2cd..84eedd0e 100644 --- a/src/xz/coder.c +++ b/src/xz/coder.c @@ -659,7 +659,7 @@ coder_set_compression_settings(void) // Original dictionary sizes are used to show how each // filter's dictionary was reduced. - uint64_t orig_dict_size; + uint32_t orig_dict_size; // Index of the LZMA filter in the filters member. We only // adjust this filter's memusage because we don't know how