diff options
Diffstat (limited to 'src/liblzma/simple')
-rw-r--r-- | src/liblzma/simple/simple_coder.c | 2 | ||||
-rw-r--r-- | src/liblzma/simple/simple_decoder.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/liblzma/simple/simple_coder.c b/src/liblzma/simple/simple_coder.c index 3ab56582..c3141b8f 100644 --- a/src/liblzma/simple/simple_coder.c +++ b/src/liblzma/simple/simple_coder.c @@ -87,7 +87,7 @@ simple_code(lzma_coder *coder, lzma_allocator *allocator, // 4, or 16. With x86 filter, it needs good luck, and thus cannot // be made to work predictably. if (action == LZMA_SYNC_FLUSH) - return LZMA_HEADER_ERROR; + return LZMA_OPTIONS_ERROR; // Flush already filtered data from coder->buffer[] to out[]. if (coder->pos < coder->filtered) { diff --git a/src/liblzma/simple/simple_decoder.c b/src/liblzma/simple/simple_decoder.c index 72f8ee16..30dc7c57 100644 --- a/src/liblzma/simple/simple_decoder.c +++ b/src/liblzma/simple/simple_decoder.c @@ -28,7 +28,7 @@ lzma_simple_props_decode(void **options, lzma_allocator *allocator, return LZMA_OK; if (props_size != 4) - return LZMA_HEADER_ERROR; + return LZMA_OPTIONS_ERROR; lzma_options_simple *opt = lzma_alloc( sizeof(lzma_options_simple), allocator); |