ddrawex/tests: Fix a typo in ok().
This commit is contained in:
parent
2a0f86afc5
commit
0730963d56
|
@ -61,7 +61,7 @@ static void RefCountTest(void)
|
|||
ok(ref == 2, "After AddRef the refcount is %u, expected 2\n", ref);
|
||||
IDirectDraw_Release(dd1);
|
||||
ref = get_ref((IUnknown *) dd1);
|
||||
ok(ref == 1, "After Release the refcount is %u, expected 2\n", ref);
|
||||
ok(ref == 1, "After Release the refcount is %u, expected 1\n", ref);
|
||||
|
||||
IDirectDraw_QueryInterface(dd1, &IID_IDirectDraw2, (void **) &dd2);
|
||||
ref = get_ref((IUnknown *) dd2);
|
||||
|
|
Loading…
Reference in New Issue