Commit 0730963d authored by Detlef Riekenberg's avatar Detlef Riekenberg Committed by Alexandre Julliard

ddrawex/tests: Fix a typo in ok().

parent 2a0f86af
......@@ -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);
......
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