Francois Gouget : Add trailing '\n's to ok() and trace() calls.

Alexandre Julliard julliard at wine.codeweavers.com
Mon Feb 6 15:01:03 CST 2006


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

Author: Francois Gouget <fgouget at free.fr>
Date:   Mon Feb  6 20:58:14 2006 +0100

Add trailing '\n's to ok() and trace() calls.

---

 dlls/secur32/tests/main.c  |    8 ++++----
 dlls/winspool/tests/info.c |    2 +-
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/dlls/secur32/tests/main.c b/dlls/secur32/tests/main.c
index 7d35014..3c75f9e 100644
--- a/dlls/secur32/tests/main.c
+++ b/dlls/secur32/tests/main.c
@@ -206,14 +206,14 @@ SECURITY_STATUS setupBuffers(PSecBufferD
         PSecBuffer sec_buffer = HeapAlloc(GetProcessHeap(), 0,
                 sizeof(SecBuffer));
         if(sec_buffer == NULL){
-            trace("in_buf: sec_buffer == NULL");
+            trace("in_buf: sec_buffer == NULL\n");
             return SEC_E_INSUFFICIENT_MEMORY;
         }
         
         buffer = HeapAlloc(GetProcessHeap(), 0, size);
 
         if(buffer == NULL){
-            trace("in_buf: buffer == NULL");
+            trace("in_buf: buffer == NULL\n");
             return SEC_E_INSUFFICIENT_MEMORY;
         }
 
@@ -239,14 +239,14 @@ SECURITY_STATUS setupBuffers(PSecBufferD
         PBYTE buffer = NULL;
         
         if(sec_buffer == NULL){
-            trace("out_buf: sec_buffer == NULL");
+            trace("out_buf: sec_buffer == NULL\n");
             return SEC_E_INSUFFICIENT_MEMORY;
         }
 
         buffer = HeapAlloc(GetProcessHeap(), 0, size);
 
         if(buffer == NULL){
-            trace("out_buf: buffer == NULL");
+            trace("out_buf: buffer == NULL\n");
             return SEC_E_INSUFFICIENT_MEMORY;
         }
 
diff --git a/dlls/winspool/tests/info.c b/dlls/winspool/tests/info.c
index c2a559e..62989ba 100644
--- a/dlls/winspool/tests/info.c
+++ b/dlls/winspool/tests/info.c
@@ -249,7 +249,7 @@ static void test_GetPrinterDriverDirecto
     res = GetPrinterDriverDirectoryA( NULL, NULL, 1, NULL, cbBuf, NULL);
     ok(res || (GetLastError() == RPC_X_NULL_REF_POINTER),
         "returned %d with %ld (expected '!=0' or '0' with " \
-        "RPC_X_NULL_REF_POINTER)", res, GetLastError());
+        "RPC_X_NULL_REF_POINTER)\n", res, GetLastError());
  
  
     /* with a valid buffer, but level is too large */




More information about the wine-cvs mailing list