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

Alexandre Julliard julliard at winehq.org
Mon Jan 19 08:58:25 CST 2009


Module: wine
Branch: master
Commit: 0730963d56e0485b6da791f67430d331b7fe4094
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=0730963d56e0485b6da791f67430d331b7fe4094

Author: Detlef Riekenberg <wine.dev at web.de>
Date:   Fri Jan 16 17:24:07 2009 +0100

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

---

 dlls/ddrawex/tests/ddrawex.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/dlls/ddrawex/tests/ddrawex.c b/dlls/ddrawex/tests/ddrawex.c
index 848c149..608a19c 100644
--- a/dlls/ddrawex/tests/ddrawex.c
+++ b/dlls/ddrawex/tests/ddrawex.c
@@ -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);




More information about the wine-cvs mailing list