mscms: Use BOOL type where appropriate.

oldstable
Frédéric Delanoy 2013-11-12 01:16:38 +01:00 committed by Alexandre Julliard
parent e50dfb69ee
commit 685b931c2a
1 changed files with 3 additions and 3 deletions

View File

@ -58,7 +58,7 @@ static DWORD from_profile( HPROFILE profile )
static DWORD from_bmformat( BMFORMAT format )
{
static int quietfixme = 0;
static BOOL quietfixme = FALSE;
TRACE( "bitmap format: 0x%08x\n", format );
switch (format)
@ -69,10 +69,10 @@ static DWORD from_bmformat( BMFORMAT format )
case BM_xRGBQUADS: return TYPE_ARGB_8;
case BM_xBGRQUADS: return TYPE_ABGR_8;
default:
if (quietfixme == 0)
if (!quietfixme)
{
FIXME("unhandled bitmap format 0x%x\n", format);
quietfixme = 1;
quietfixme = TRUE;
}
return TYPE_RGB_8;
}