summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorYann Collet <cyan@fb.com>2017-11-03 02:50:08 (GMT)
committerYann Collet <cyan@fb.com>2017-11-03 02:50:08 (GMT)
commit05d78eb817fc3eea13bd89377e771bbe19bb02c3 (patch)
treef3495e97675ffe5c3432d50c182861b137d3dd70 /lib
parenta1c5343d89cb854462d8458c609a4f61a6aeb808 (diff)
downloadlz4-05d78eb817fc3eea13bd89377e771bbe19bb02c3.zip
lz4-05d78eb817fc3eea13bd89377e771bbe19bb02c3.tar.gz
lz4-05d78eb817fc3eea13bd89377e771bbe19bb02c3.tar.bz2
new level 11 uses 512 attempts
Diffstat (limited to 'lib')
-rw-r--r--lib/lz4hc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/lz4hc.c b/lib/lz4hc.c
index 2d8671d..a7238c7 100644
--- a/lib/lz4hc.c
+++ b/lib/lz4hc.c
@@ -644,7 +644,7 @@ static int LZ4HC_getSearchNum(int compressionLevel)
{
switch (compressionLevel) {
default: return 0; /* unused */
- case 11: return 256;
+ case 11: return 512;
case 12: return 1<<13;
}
}