diff options
author | Lasse Collin <lasse.collin@tukaani.org> | 2022-03-06 16:54:23 +0200 |
---|---|---|
committer | Lasse Collin <lasse.collin@tukaani.org> | 2022-03-06 16:54:23 +0200 |
commit | 717631b9788dc9c100ee0c87d3c14a2782638ff4 (patch) | |
tree | 0f7339c4e606f3f827829f3b5f5a9de7d9f72c30 | |
parent | liblzma: Add new output queue (lzma_outq) features. (diff) | |
download | xz-717631b9788dc9c100ee0c87d3c14a2782638ff4.tar.xz |
liblzma: Fix docs: lzma_block_decoder() cannot return LZMA_UNSUPPORTED_CHECK.
If Check is unsupported, it will be silently ignored.
It's the caller's job to handle it.
-rw-r--r-- | src/liblzma/api/lzma/block.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/liblzma/api/lzma/block.h b/src/liblzma/api/lzma/block.h index 962f3877..082e5583 100644 --- a/src/liblzma/api/lzma/block.h +++ b/src/liblzma/api/lzma/block.h @@ -464,9 +464,6 @@ extern LZMA_API(lzma_ret) lzma_block_encoder( * LZMA_FINISH is not required. It is supported only for convenience. * * \return - LZMA_OK: All good, continue with lzma_code(). - * - LZMA_UNSUPPORTED_CHECK: Initialization was successful, but - * the given Check ID is not supported, thus Check will be - * ignored. * - LZMA_PROG_ERROR * - LZMA_MEM_ERROR */ |