mscms: Quiet a noisy fixme.

This commit is contained in:
Detlef Riekenberg 2008-10-18 01:03:49 +02:00 committed by Alexandre Julliard
parent 7aef1c7185
commit 991c76525f
1 changed files with 6 additions and 1 deletions

View File

@ -58,6 +58,7 @@ static DWORD from_profile( HPROFILE profile )
static DWORD from_bmformat( BMFORMAT format )
{
static int quietfixme = 0;
TRACE( "bitmap format: 0x%08x\n", format );
switch (format)
@ -66,7 +67,11 @@ static DWORD from_bmformat( BMFORMAT format )
case BM_BGRTRIPLETS: return TYPE_BGR_8;
case BM_GRAY: return TYPE_GRAY_8;
default:
FIXME("unhandled bitmap format\n");
if (quietfixme == 0)
{
FIXME("unhandled bitmap format 0x%x\n", format);
quietfixme = 1;
}
return TYPE_RGB_8;
}
}