Add trailing '\n's to ok() calls.
This commit is contained in:
parent
9714802b25
commit
10f72c719b
|
@ -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);
|
||||
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue