diff options
author | Jia Tan <jiat0218@gmail.com> | 2023-12-16 20:30:55 +0800 |
---|---|---|
committer | Jia Tan <jiat0218@gmail.com> | 2023-12-16 20:30:55 +0800 |
commit | 1a1bb381db7a20cf86cb45a350e5cca35224d017 (patch) | |
tree | 96a42b049b7e8e10e3bfd870e17a5b23774a8ffc /src/liblzma/lz/lz_encoder.c | |
parent | liblzma: Make parameter names in function definition match declaration. (diff) | |
download | xz-1a1bb381db7a20cf86cb45a350e5cca35224d017.tar.xz |
liblzma: Tweak a comment.
Diffstat (limited to '')
-rw-r--r-- | src/liblzma/lz/lz_encoder.c | 2 |
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 |