twain_32/tests: Add a trailing '\n' to ok() calls.

Francois Gouget fgouget at free.fr
Fri Jan 30 04:38:03 CST 2009


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

diff --git a/dlls/twain_32/tests/dsm.c b/dlls/twain_32/tests/dsm.c
index bf91ba2..278ea7c 100644
--- a/dlls/twain_32/tests/dsm.c
+++ b/dlls/twain_32/tests/dsm.c
@@ -247,12 +247,12 @@ START_TEST(dsm)
                         NULL, NULL, GetModuleHandleA(0), NULL);
 
     rc = pDSM_Entry(&appid, NULL, DG_CONTROL, DAT_PARENT, MSG_OPENDSM, (TW_MEMREF) &hwnd);
-    ok(rc == TWRC_SUCCESS, "MSG_OPENDSM returned %d", rc);
+    ok(rc == TWRC_SUCCESS, "MSG_OPENDSM returned %d\n", rc);
 
     test_sources(&appid);
 
     rc = pDSM_Entry(&appid, NULL, DG_CONTROL, DAT_PARENT, MSG_CLOSEDSM, (TW_MEMREF) &hwnd);
-    ok(rc == TWRC_SUCCESS, "MSG_CLOSEDSM returned %d", rc);
+    ok(rc == TWRC_SUCCESS, "MSG_CLOSEDSM returned %d\n", rc);
 
     DestroyWindow(hwnd);
     FreeLibrary(htwain);
-- 
1.5.6.5




More information about the wine-patches mailing list