mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-01-31 19:10:36 +00:00
Fix operator grouping warning.
This commit is contained in:
parent
a0387a053f
commit
a1ad2627e6
@ -901,7 +901,7 @@ PRBool nsImageWin :: SetSystemPalette(HDC* aHdc)
|
||||
if (mNumPalleteColors != 0)
|
||||
return PR_FALSE;
|
||||
|
||||
if (!::GetDeviceCaps(aHdc, RASTERCAPS) & RC_PALETTE)
|
||||
if (!(::GetDeviceCaps(aHdc, RASTERCAPS) & RC_PALETTE))
|
||||
return PR_FALSE;
|
||||
|
||||
nsyscol = ::GetDeviceCaps(aHdc, NUMCOLORS);
|
||||
|
Loading…
x
Reference in New Issue
Block a user