Commit 4dace74b authored by Mike McCormack's avatar Mike McCormack Committed by Alexandre Julliard

crypt32: Fix a cast for Win64.

parent 2d107f98
......@@ -968,7 +968,7 @@ static void init_oid_info(HINSTANCE hinst)
(LPWSTR)((LPBYTE)info + sizeof(struct OIDInfo));
info->info.dwGroupId = oidInfoConstructors[i].dwGroupId;
info->info.u.Algid = oidInfoConstructors[i].Algid;
LoadStringW(hinst, (UINT)oidInfoConstructors[i].pwszName,
LoadStringW(hinst, (UINT_PTR)oidInfoConstructors[i].pwszName,
(LPWSTR)info->info.pwszName, len + 1);
if (oidInfoConstructors[i].blob)
{
......
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