Commit 32f6b71c authored by Mike McCormack's avatar Mike McCormack Committed by Alexandre Julliard

crypt32: Fix a warning.

parent b07299f1
......@@ -267,7 +267,7 @@ static void testGetSubjectCert(void)
store = CertOpenStore(CERT_STORE_PROV_MEMORY, 0, 0,
CERT_STORE_CREATE_NEW_FLAG, NULL);
ok(store, "CertOpenStore failed: %ld\n", GetLastError());
ok(store != NULL, "CertOpenStore failed: %ld\n", GetLastError());
if (store != NULL)
{
PCCERT_CONTEXT context1, context2;
......
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