Fix #133 - wrong block size used

This commit is contained in:
Tino Reichardt
2020-06-01 21:25:18 +02:00
parent 9c3c277ad7
commit f348c23dae

View File

@@ -257,7 +257,7 @@ HRESULT CompressFiles(
if (fo.BlockLogSize) if (fo.BlockLogSize)
{ {
params += " -ms="; params += " -ms=";
ConvertUInt32ToString(1 << fo.BlockLogSize, temp); ConvertUInt64ToString(1ULL << fo.BlockLogSize, temp);
params += temp; params += temp;
params += "b"; params += "b";
} }