diff options
author | Yann Collet <cyan@fb.com> | 2018-04-26 22:49:32 (GMT) |
---|---|---|
committer | Yann Collet <cyan@fb.com> | 2018-04-26 22:49:32 (GMT) |
commit | 5c7d3812d90aeaf072d14f6b5d935711da6f14c7 (patch) | |
tree | ec95ac821c784c774832daf51dcd5869234e208f /lib/lz4hc.c | |
parent | 3792d00168edd060c58ceaecffb97d43dab27094 (diff) | |
download | lz4-5c7d3812d90aeaf072d14f6b5d935711da6f14c7.zip lz4-5c7d3812d90aeaf072d14f6b5d935711da6f14c7.tar.gz lz4-5c7d3812d90aeaf072d14f6b5d935711da6f14c7.tar.bz2 |
fasterDecSpeed can be triggered from cli with --favor-decSpeed
Diffstat (limited to 'lib/lz4hc.c')
-rw-r--r-- | lib/lz4hc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/lz4hc.c b/lib/lz4hc.c index b90d60b..39ab5fb 100644 --- a/lib/lz4hc.c +++ b/lib/lz4hc.c @@ -718,7 +718,7 @@ LZ4_FORCE_INLINE int LZ4HC_compress_generic_internal ( cParam.nbSearches, cParam.targetLength, limit, cLevel == LZ4HC_CLEVEL_MAX, /* ultra mode */ dict, - favorDecompressionSpeed); + ctx->favorDecSpeed); } } |