]> wimlib.net Git - wimlib/blobdiff - src/wim.c
Switch from suffix array match-finder to binary tree match-finder
[wimlib] / src / wim.c
index 2942863c938859e44d2ba62f2c4c2073492e395a..2dd0787238863a7dac8dafbe003f0ba41b2bbea9 100644 (file)
--- a/src/wim.c
+++ b/src/wim.c
@@ -66,9 +66,7 @@ static u32
 wim_default_pack_chunk_size(int ctype) {
        switch (ctype) {
        case WIMLIB_COMPRESSION_TYPE_LZMS:
-               /* Note: WIMGAPI uses 1 << 26, but lower sizes are compatible.
-                * */
-               return 1U << 25; /* 33554432  */
+               return 1U << 26; /* 67108864  */
        default:
                return 1U << 15; /* 32768     */
        }