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

This commit is contained in:
Francois Gouget 2005-09-26 09:52:25 +00:00 committed by Alexandre Julliard
parent 9714802b25
commit 10f72c719b
2 changed files with 3 additions and 4 deletions

View File

@ -73,7 +73,7 @@ static void test_ifont_sizes(long lo_size, long hi_size,
/* 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);

View File

@ -235,9 +235,8 @@ static void testEnumerateSecurityPackages(void)
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)