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

Francois Gouget fgouget at free.fr
Mon Feb 6 06:25:12 CST 2006


Changelog:

  * dlls/secur32/tests/main.c
    dlls/winspool/tests/info.c

    Francois Gouget <fgouget at free.fr>
    Add trailing '\n's to ok() and trace() calls

-- 
Francois Gouget         fgouget at free.fr        http://fgouget.free.fr/
      We are Pentium of Borg. You will be approximated. Division is futile.
-------------- next part --------------
Index: dlls/secur32/tests/main.c
===================================================================
RCS file: /home/wine/wine/dlls/secur32/tests/main.c,v
retrieving revision 1.8
diff -u -p -r1.8 main.c
--- dlls/secur32/tests/main.c	3 Jan 2006 12:39:37 -0000	1.8
+++ dlls/secur32/tests/main.c	6 Feb 2006 05:45:24 -0000
@@ -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;
         }
 
Index: dlls/winspool/tests/info.c
===================================================================
RCS file: /home/wine/wine/dlls/winspool/tests/info.c,v
retrieving revision 1.17
diff -u -p -r1.17 info.c
--- dlls/winspool/tests/info.c	2 Feb 2006 13:14:16 -0000	1.17
+++ dlls/winspool/tests/info.c	6 Feb 2006 05:45:25 -0000
@@ -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-patches mailing list