Francois Gouget : wintrust/tests: Add a trailing '\n' to ok() calls.

Alexandre Julliard julliard at winehq.org
Fri Dec 19 11:19:36 CST 2008


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

Author: Francois Gouget <fgouget at free.fr>
Date:   Fri Dec 19 09:15:18 2008 +0100

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

---

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

diff --git a/dlls/wintrust/tests/crypt.c b/dlls/wintrust/tests/crypt.c
index 99f3066..6811fd4 100644
--- a/dlls/wintrust/tests/crypt.c
+++ b/dlls/wintrust/tests/crypt.c
@@ -362,7 +362,7 @@ static void test_CryptCATAdminAddRemoveCatalog(void)
     if (!GetTempFileNameA(CURR_DIR, "cat", 0, tmpfile)) return;
     DeleteFileA(tmpfile);
     file = CreateFileA(tmpfile, GENERIC_WRITE, 0, NULL, CREATE_NEW, 0, NULL);
-    ok(file != INVALID_HANDLE_VALUE, "CreateFileA failed %u", GetLastError());
+    ok(file != INVALID_HANDLE_VALUE, "CreateFileA failed %u\n", GetLastError());
     CloseHandle(file);
 
     ret = pCryptCATAdminAcquireContext(&hcatadmin, &dummy, 0);
@@ -404,7 +404,7 @@ static void test_CryptCATAdminAddRemoveCatalog(void)
 
     DeleteFileA(tmpfile);
     file = CreateFileA(tmpfile, GENERIC_WRITE, 0, NULL, CREATE_NEW, 0, NULL);
-    ok(file != INVALID_HANDLE_VALUE, "CreateFileA failed %u", GetLastError());
+    ok(file != INVALID_HANDLE_VALUE, "CreateFileA failed %u\n", GetLastError());
     WriteFile(file, test_catalog, sizeof(test_catalog), &written, NULL);
     CloseHandle(file);
 




More information about the wine-cvs mailing list