diff options
author | Lasse Collin <lasse.collin@tukaani.org> | 2017-04-21 15:05:16 +0300 |
---|---|---|
committer | Lasse Collin <lasse.collin@tukaani.org> | 2017-04-21 15:05:16 +0300 |
commit | 8c9842c265993d7dd4039f732d3546267fb5ecc4 (patch) | |
tree | 3cd6d160205a4dda6753b04d39a772572efbbf90 /src/liblzma/common/common.c | |
parent | Update the home page URLs to HTTPS. (diff) | |
download | xz-8c9842c265993d7dd4039f732d3546267fb5ecc4.tar.xz |
liblzma: Rename LZMA_SEEK to LZMA_SEEK_NEEDED and seek_in to seek_pos.
Diffstat (limited to '')
-rw-r--r-- | src/liblzma/common/common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/liblzma/common/common.c b/src/liblzma/common/common.c index 8ffe9764..1399b928 100644 --- a/src/liblzma/common/common.c +++ b/src/liblzma/common/common.c @@ -317,7 +317,7 @@ lzma_code(lzma_stream *strm, lzma_action action) ret = LZMA_OK; break; - case LZMA_SEEK: + case LZMA_SEEK_NEEDED: strm->internal->allow_buf_error = false; // If LZMA_FINISH was used, reset it back to the |