crypt32/tests: Add a trailing '\n' to an ok() call.

This commit is contained in:
Francois Gouget 2008-09-05 13:14:36 +02:00 committed by Alexandre Julliard
parent 961d65ab30
commit 80ef97be1a
1 changed files with 1 additions and 1 deletions

View File

@ -231,7 +231,7 @@ static void testCTLProperties(void)
ok(ret, "CertGetCTLContextProperty failed: %08x\n", GetLastError());
ret = CertGetCTLContextProperty(ctl, CERT_ACCESS_STATE_PROP_ID, &access,
&size);
ok(ret, "CertGetCTLContextProperty failed: %08x", GetLastError());
ok(ret, "CertGetCTLContextProperty failed: %08x\n", GetLastError());
ok(!(access & CERT_ACCESS_STATE_WRITE_PERSIST_FLAG),
"Didn't expect a persisted cert\n");