Module: wine Branch: master Commit: 80ef97be1a77d8b5b4b320fbd6398c9a18b6ab9d URL: http://source.winehq.org/git/wine.git/?a=commit;h=80ef97be1a77d8b5b4b320fbd6...
Author: Francois Gouget fgouget@free.fr Date: Fri Sep 5 13:14:36 2008 +0200
crypt32/tests: Add a trailing '\n' to an ok() call.
---
dlls/crypt32/tests/ctl.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/crypt32/tests/ctl.c b/dlls/crypt32/tests/ctl.c index f92760c..d8c4a62 100644 --- a/dlls/crypt32/tests/ctl.c +++ b/dlls/crypt32/tests/ctl.c @@ -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");