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

Francois Gouget fgouget at free.fr
Sun Sep 25 13:26:34 CDT 2005


Changelog:

  * dlls/oleaut32/tests/olefont.c
    dlls/secur32/tests/main.c

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


-- 
Francois Gouget         fgouget at free.fr        http://fgouget.free.fr/
         War doesn't determine who's right.  War determines who's left.
-------------- next part --------------
Index: dlls/oleaut32/tests/olefont.c
===================================================================
RCS file: /var/cvs/wine/dlls/oleaut32/tests/olefont.c,v
retrieving revision 1.8
diff -u -p -r1.8 olefont.c
--- dlls/oleaut32/tests/olefont.c	13 Sep 2005 10:36:54 -0000	1.8
+++ dlls/oleaut32/tests/olefont.c	14 Sep 2005 04:45:36 -0000
@@ -73,7 +73,7 @@ static void test_ifont_sizes(long lo_siz
 	/* Create font, test that it worked. */
 	hres = pOleCreateFontIndirect(&fd, &IID_IFont, &pvObj);
 	ifnt = pvObj;
-	ok(hres == S_OK,"%s: OCFI returns 0x%08lx instead of S_OK.",
+	ok(hres == S_OK,"%s: OCFI returns 0x%08lx instead of S_OK.\n",
 		test_name, hres);
 	ok(pvObj != NULL,"%s: OCFI returns NULL.\n", test_name);
 
Index: dlls/secur32/tests/main.c
===================================================================
RCS file: /var/cvs/wine/dlls/secur32/tests/main.c,v
retrieving revision 1.5
diff -u -p -r1.5 main.c
--- dlls/secur32/tests/main.c	30 Aug 2005 08:55:20 -0000	1.5
+++ dlls/secur32/tests/main.c	25 Sep 2005 17:46:21 -0000
@@ -235,9 +235,8 @@ static void testEnumerateSecurityPackage
     
     trace("Number of packages: %ld\n", num_packages);
     for(i = 0; i < num_packages; ++i){
-        trace("%ld: ", i);
-        trace("Package \"%s\"\n", pkg_info[i].Name);
-        trace("Flags supported: \n");
+        trace("%ld: Package \"%s\"\n", i, pkg_info[i].Name);
+        trace("Supported flags:\n");
         if(pkg_info[i].fCapabilities & SECPKG_FLAG_INTEGRITY)
             trace("\tSECPKG_FLAG_INTEGRITY\n");
         if(pkg_info[i].fCapabilities & SECPKG_FLAG_PRIVACY)


More information about the wine-patches mailing list