Commit 8733ec83 authored by James Hawkins's avatar James Hawkins Committed by Alexandre Julliard

crypt32: Trace the returned value on failure.

parent f4c8a0fa
......@@ -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,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment