ddraw/tests: Use the proper type for a return value (PVS-Studio).
Signed-off-by: Michael Stefaniuc <mstefani@redhat.de> Signed-off-by: Henri Verbeet <hverbeet@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
408b7ea6b3
commit
ad4057803d
|
@ -932,8 +932,8 @@ static void testcooperativelevels_exclusive(void)
|
|||
|
||||
/* rect_before_create is assumed to hold the screen rect */
|
||||
GetClientRect(hwnd, &window_rect);
|
||||
rc = EqualRect(&rect_before_create, &window_rect);
|
||||
ok(rc, "Fullscreen window has wrong size.\n");
|
||||
success = EqualRect(&rect_before_create, &window_rect);
|
||||
ok(success, "Fullscreen window has wrong size.\n");
|
||||
|
||||
/* Set the focus window. Should fail */
|
||||
rc = IDirectDraw_SetCooperativeLevel(lpDD,
|
||||
|
|
Loading…
Reference in New Issue