X-Git-Url: https://wimlib.net/git/?a=blobdiff_plain;ds=sidebyside;f=src%2Fwim.c;h=2dd0787238863a7dac8dafbe003f0ba41b2bbea9;hb=b7071062542143113ad654d89ee6b0603b23b524;hp=2942863c938859e44d2ba62f2c4c2073492e395a;hpb=d444f2e5ddee51e7d9d0401cffcf88477c180422;p=wimlib diff --git a/src/wim.c b/src/wim.c index 2942863c..2dd07872 100644 --- 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 */ }