diff options
author | Lasse Collin <lasse.collin@tukaani.org> | 2022-03-06 16:54:23 +0200 |
---|---|---|
committer | Lasse Collin <lasse.collin@tukaani.org> | 2022-07-12 19:30:40 +0300 |
commit | f12ce0f23a0496daebc77e8359309bf724ad5e8a (patch) | |
tree | 10a3388149312fd20cd8647f3d324421f2e3e071 | |
parent | 412566731111edc28f0b68bc966d01ab24d17082 (diff) | |
download | xz-f12ce0f23a0496daebc77e8359309bf724ad5e8a.tar.gz |
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 962f387..082e558 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 */ |