diff options
author | Lasse Collin <lasse.collin@tukaani.org> | 2010-10-21 23:06:31 +0300 |
---|---|---|
committer | Lasse Collin <lasse.collin@tukaani.org> | 2010-10-21 23:06:31 +0300 |
commit | d09c5753e33ff96ee57edb6d1e98e34041203695 (patch) | |
tree | ac6f5031a9cc1da06045e68d9b7733c3af0b3344 /src/liblzma/api/lzma/block.h | |
parent | Update INSTALL.generic. (diff) | |
download | xz-d09c5753e33ff96ee57edb6d1e98e34041203695.tar.xz |
liblzma: Update the comments in the API headers.
Adding support for LZMA_FINISH for Index encoding and
decoding needed tiny additions to the relevant .c files too.
Diffstat (limited to 'src/liblzma/api/lzma/block.h')
-rw-r--r-- | src/liblzma/api/lzma/block.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/liblzma/api/lzma/block.h b/src/liblzma/api/lzma/block.h index 8e681ed2..3019bf91 100644 --- a/src/liblzma/api/lzma/block.h +++ b/src/liblzma/api/lzma/block.h @@ -318,8 +318,8 @@ extern LZMA_API(lzma_ret) lzma_block_header_encode( * The size of the Block Header must have already been decoded with * lzma_block_header_size_decode() macro and stored to block->header_size. * - * block->filters must have been allocated, but not necessarily initialized. - * Possible existing filter options are _not_ freed. + * block->filters must have been allocated, but they don't need to be + * initialized (possible existing filter options are not freed). * * \param block Destination for Block options. * \param allocator lzma_allocator for custom allocator functions. |