mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-12 20:11:34 -06:00
4.43 beta
This commit is contained in:
committed by
Kornel Lesiński
parent
0ec42ff829
commit
804edc5756
@@ -112,7 +112,7 @@ static unsigned short ConvertValue(unsigned short value, bool convert)
|
||||
{
|
||||
if (!convert)
|
||||
return value;
|
||||
return (((unsigned short)(value & 0xFF)) << 8) | (value >> 8);
|
||||
return (unsigned short)((((unsigned short)(value & 0xFF)) << 8) | (value >> 8));
|
||||
}
|
||||
|
||||
static UInt32 GetAlignedSize(UInt32 size, UInt32 align)
|
||||
|
||||
Reference in New Issue
Block a user