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

This commit is contained in:
Eric Pouech 2011-12-11 15:05:08 +01:00 committed by Alexandre Julliard
parent 8985c53397
commit 1d3952ed9f
2 changed files with 2 additions and 2 deletions

View File

@ -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);

View File

@ -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);