mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-14 10:11:38 -06:00
Fix #133 - wrong block size used
This commit is contained in:
@@ -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";
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user