d3drm/tests: Fix error message.

This commit is contained in:
Christian Costa 2012-05-10 07:52:12 +02:00 committed by Alexandre Julliard
parent 4996043374
commit 3e24242618
1 changed files with 1 additions and 1 deletions

View File

@ -779,7 +779,7 @@ static const GUID* refiids[] =
static void __cdecl object_load_callback(LPDIRECT3DRMOBJECT object, REFIID objectguid, LPVOID arg)
{
ok(object != NULL, "Arg 1 should not be null\n");
ok(IsEqualGUID(objectguid, refiids[nb_objects]), "Arg 2 should is incorrect\n");
ok(IsEqualGUID(objectguid, refiids[nb_objects]), "Arg 2 is incorrect\n");
ok(arg == (LPVOID)0xdeadbeef, "Arg 3 should be 0xdeadbeef (got %p)\n", arg);
nb_objects++;
}