Commit 1d3952ed authored by Eric Pouech's avatar Eric Pouech Committed by Alexandre Julliard

d3d: Fixed a couple of warnings for 64bit targets.

parent 8985c533
......@@ -893,7 +893,7 @@ static void test_cursor_pos(void)
flush_events();
ok(!expect_pos->x && !expect_pos->y, "Didn't receive MOUSEMOVE %u (%d, %d).\n",
expect_pos - points, expect_pos->x, expect_pos->y);
(unsigned)(expect_pos - points), expect_pos->x, expect_pos->y);
refcount = IDirect3DDevice8_Release(device);
ok(!refcount, "Device has %u references left.\n", refcount);
......
......@@ -3237,7 +3237,7 @@ static void test_cursor_pos(void)
flush_events();
ok(!expect_pos->x && !expect_pos->y, "Didn't receive MOUSEMOVE %u (%d, %d).\n",
expect_pos - points, expect_pos->x, expect_pos->y);
(unsigned)(expect_pos - points), expect_pos->x, expect_pos->y);
refcount = IDirect3DDevice9_Release(device);
ok(!refcount, "Device has %u references left.\n", refcount);
......
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