diff options
author | Lasse Collin <lasse.collin@tukaani.org> | 2008-09-27 23:49:24 +0300 |
---|---|---|
committer | Lasse Collin <lasse.collin@tukaani.org> | 2008-09-27 23:49:24 +0300 |
commit | ea560b0ea80525752bdcd0074d24f8dc170bbe29 (patch) | |
tree | f4d11acfaf7965a83a60ad41f8fe6c91e4df922a /src/liblzma | |
parent | Changed magic bytes to match the updated spec. Filename (diff) | |
download | xz-ea560b0ea80525752bdcd0074d24f8dc170bbe29.tar.xz |
Fix conflicting Subblock helper filter's ID.
Diffstat (limited to 'src/liblzma')
-rw-r--r-- | src/liblzma/common/common.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/liblzma/common/common.h b/src/liblzma/common/common.h index bb999842..275cf05f 100644 --- a/src/liblzma/common/common.h +++ b/src/liblzma/common/common.h @@ -54,7 +54,7 @@ /// Internal helper filter used by Subblock decoder. It is mapped to an /// otherwise invalid Filter ID, which is impossible to get from any input /// file (even if malicious file). -#define LZMA_FILTER_SUBBLOCK_HELPER (LZMA_FILTER_RESERVED_START + 1) +#define LZMA_FILTER_SUBBLOCK_HELPER LZMA_VLI_C(0x7000000000000001) /// Supported flags that can be passed to lzma_stream_decoder() |