Commit f4323428 authored by André Hentschel's avatar André Hentschel Committed by Alexandre Julliard

gdi16: Use boolean return value in boolean function.

parent bdc9b147
...@@ -2907,7 +2907,7 @@ BOOL16 WINAPI IsGDIObject16( HGDIOBJ16 handle16 ) ...@@ -2907,7 +2907,7 @@ BOOL16 WINAPI IsGDIObject16( HGDIOBJ16 handle16 )
UINT type = GetObjectType( HGDIOBJ_32( 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]; return type_map[type];
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment