Commit aafaec4f authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

gdiplus/tests: Remove unneeded casts.

parent 9c63e186
......@@ -540,9 +540,9 @@ static void test_Get_Release_DC(void)
status = GdipGetDC(NULL, &retdc);
expect(InvalidParameter, status);
status = GdipReleaseDC(NULL, (HDC)0);
status = GdipReleaseDC(NULL, NULL);
expect(InvalidParameter, status);
status = GdipReleaseDC(graphics, (HDC)0);
status = GdipReleaseDC(graphics, NULL);
expect(InvalidParameter, status);
status = GdipReleaseDC(NULL, (HDC)0xdeadbeef);
expect(InvalidParameter, status);
......
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