aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJia Tan <jiat0218@gmail.com>2023-12-16 20:30:55 +0800
committerJia Tan <jiat0218@gmail.com>2023-12-22 20:02:06 +0800
commit0ba5dd7ba13dee73dce49ce2b32b0ea7b059835d (patch)
treeb1ecaf7c20b5ff7dfa55b24306499fe0d6525f4e
parentliblzma: Make parameter names in function definition match declaration. (diff)
downloadxz-0ba5dd7ba13dee73dce49ce2b32b0ea7b059835d.tar.xz
liblzma: Tweak a comment.
-rw-r--r--src/liblzma/lz/lz_encoder.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/liblzma/lz/lz_encoder.c b/src/liblzma/lz/lz_encoder.c
index 5489085a..b894d1de 100644
--- a/src/liblzma/lz/lz_encoder.c
+++ b/src/liblzma/lz/lz_encoder.c
@@ -549,7 +549,7 @@ lzma_lz_encoder_init(lzma_next_coder *next, const lzma_allocator *allocator,
lzma_lz_options *lz_options))
{
#if defined(HAVE_SMALL) && !defined(HAVE_FUNC_ATTRIBUTE_CONSTRUCTOR)
- // We need that the CRC32 table has been initialized.
+ // The CRC32 table must be initialized.
lzma_crc32_init();
#endif