Commit 42abd3b0 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

crypt32: Remove unneeded casts of zero.

parent d5777473
...@@ -179,7 +179,7 @@ HCRYPTPROV WINAPI I_CryptGetDefaultCryptProv(DWORD reserved) ...@@ -179,7 +179,7 @@ HCRYPTPROV WINAPI I_CryptGetDefaultCryptProv(DWORD reserved)
if (reserved) if (reserved)
{ {
SetLastError(E_INVALIDARG); SetLastError(E_INVALIDARG);
return (HCRYPTPROV)0; return 0;
} }
ret = CRYPT_GetDefaultProvider(); ret = CRYPT_GetDefaultProvider();
CryptContextAddRef(ret, NULL, 0); CryptContextAddRef(ret, NULL, 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