Module: wine Branch: master Commit: 3e24242618047ae9a1be5fa71953def16c3c55cb URL: http://source.winehq.org/git/wine.git/?a=commit;h=3e24242618047ae9a1be5fa719...
Author: Christian Costa titan.costa@gmail.com Date: Thu May 10 07:52:12 2012 +0200
d3drm/tests: Fix error message.
---
dlls/d3drm/tests/d3drm.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/d3drm/tests/d3drm.c b/dlls/d3drm/tests/d3drm.c index c48cc2c..64f93cf 100644 --- a/dlls/d3drm/tests/d3drm.c +++ b/dlls/d3drm/tests/d3drm.c @@ -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++; }