Module: wine Branch: master Commit: 8733ec83261cf017145676a2d72ca11f7feeb4f3 URL: http://source.winehq.org/git/wine.git/?a=commit;h=8733ec83261cf017145676a2d7...
Author: James Hawkins jhawkins@codeweavers.com Date: Mon Sep 8 00:50:23 2008 -0500
crypt32: Trace the returned value on failure.
---
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 d8c4a62..799e9c9 100644 --- a/dlls/crypt32/tests/ctl.c +++ b/dlls/crypt32/tests/ctl.c @@ -362,7 +362,7 @@ static void testAddCTLToStore(void) ok(!ret && (GetLastError() == CRYPT_E_EXISTS || GetLastError() == CRYPT_E_NOT_FOUND), /* win9x */ - "expected CRYPT_E_EXISTS, got %08x\n", GetLastError()); + "expected CRYPT_E_EXISTS, got %d %08x\n", ret, GetLastError()); CertCloseStore(store, 0);
store = CertOpenStore(CERT_STORE_PROV_MEMORY, 0, 0,