4.43 beta

This commit is contained in:
Igor Pavlov
2006-09-15 00:00:00 +00:00
committed by Kornel Lesiński
parent 0ec42ff829
commit 804edc5756
391 changed files with 9725 additions and 3168 deletions

View File

@@ -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)