From: Lasse Collin Date: Sun, 12 May 2024 19:16:05 +0000 (+0300) Subject: xz: Edit comments X-Git-Tag: v5.7.1alpha~298 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=32eb176b89243fce3112347fe43a8ad14a9fd2be;p=thirdparty%2Fxz.git xz: Edit comments Fixes: 5f0c5a04388f8334962c70bc37a8c2ff8f605e0a --- diff --git a/src/xz/coder.c b/src/xz/coder.c index 7d505c6e..f22d8a44 100644 --- a/src/xz/coder.c +++ b/src/xz/coder.c @@ -648,7 +648,7 @@ coder_set_compression_settings(void) // filter's dictionary was reduced. uint32_t orig_dict_size; - // Index of the LZMA filter in the filters member. We only + // Index of LZMA1 or LZMA2 in the filters member. We only // adjust this filter's memusage because we don't know how // to reduce the memory usage of the other filters. uint32_t lzma_idx; @@ -662,14 +662,10 @@ coder_set_compression_settings(void) memusage_reduction_data memusage_reduction[ARRAY_SIZE(chains)]; - // Counter represents how many filter chains are above the memory - // limit. + // Count how many filter chains are above the memory usage limit. size_t count = 0; for (uint32_t i = 0; i < ARRAY_SIZE(chains); i++) { - // The short var name "r" will reduce the number of lines - // of code needed since less lines will stretch past 80 - // characters. memusage_reduction_data *r = &memusage_reduction[i]; r->filters = NULL; r->reduce_dict_size = false;