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-16 20:30:55 +0800
commit1a1bb381db7a20cf86cb45a350e5cca35224d017 (patch)
tree96a42b049b7e8e10e3bfd870e17a5b23774a8ffc
parentliblzma: Make parameter names in function definition match declaration. (diff)
downloadxz-1a1bb381db7a20cf86cb45a350e5cca35224d017.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 8e724a03..795ae27a 100644
--- a/src/liblzma/lz/lz_encoder.c
+++ b/src/liblzma/lz/lz_encoder.c
@@ -547,7 +547,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