mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-08 00:06:59 -06:00
15.05
This commit is contained in:
committed by
Kornel Lesiński
parent
0713a3ab80
commit
54490d51d5
@@ -238,9 +238,9 @@ void Lzma2EncProps_Normalize(CLzma2EncProps *p)
|
||||
if (temp > p->lzmaProps.reduceSize)
|
||||
{
|
||||
UInt64 numBlocks = temp / p->blockSize;
|
||||
if (numBlocks < t2)
|
||||
if (numBlocks < (unsigned)t2)
|
||||
{
|
||||
t2 = (UInt32)numBlocks;
|
||||
t2 = (unsigned)numBlocks;
|
||||
t3 = t1 * t2;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user