gdi16: Use boolean return value in boolean function.

This commit is contained in:
André Hentschel 2014-01-29 22:28:31 +01:00 committed by Alexandre Julliard
parent bdc9b147b9
commit f43234289d
1 changed files with 1 additions and 1 deletions

View File

@ -2907,7 +2907,7 @@ BOOL16 WINAPI IsGDIObject16( HGDIOBJ16 handle16 )
UINT type = GetObjectType( HGDIOBJ_32( handle16 ));
if (type >= sizeof(type_map)/sizeof(type_map[0])) return 0;
if (type >= sizeof(type_map)/sizeof(type_map[0])) return FALSE;
return type_map[type];
}