From bc4f5291caf141f39e472d929c9bd8d24c514fe5 Mon Sep 17 00:00:00 2001 From: Eric Biggers Date: Sun, 11 Jan 2015 19:03:10 -0600 Subject: [PATCH 1/1] wimlib.h: Fix documentation for compression block sizes --- include/wimlib.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/wimlib.h b/include/wimlib.h index f7a4a2e8..393787d1 100644 --- a/include/wimlib.h +++ b/include/wimlib.h @@ -474,7 +474,7 @@ enum wimlib_compression_type { * * If using wimlib_create_compressor() to create an XPRESS compressor * directly, the @p max_block_size parameter may be any positive value - * up to 2^16. + * up to and including 2^16. */ WIMLIB_COMPRESSION_TYPE_XPRESS = 1, @@ -496,7 +496,7 @@ enum wimlib_compression_type { * * If using wimlib_create_compressor() to create an LZX compressor * directly, the @p max_block_size parameter may be any positive value - * up to 2^21. + * up to and including 2^21. */ WIMLIB_COMPRESSION_TYPE_LZX = 2, @@ -517,7 +517,7 @@ enum wimlib_compression_type { * * If using wimlib_create_compressor() to create an LZMS compressor * directly, the @p max_block_size parameter may be any positive value - * up to 2^31 - 2. + * up to and including 1180427429. */ WIMLIB_COMPRESSION_TYPE_LZMS = 3, }; -- 2.43.0