mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-09 06:07:05 -06:00
Fix #133 - wrong block size used
This commit is contained in:
@@ -257,7 +257,7 @@ HRESULT CompressFiles(
|
||||
if (fo.BlockLogSize)
|
||||
{
|
||||
params += " -ms=";
|
||||
ConvertUInt32ToString(1 << fo.BlockLogSize, temp);
|
||||
ConvertUInt64ToString(1ULL << fo.BlockLogSize, temp);
|
||||
params += temp;
|
||||
params += "b";
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user