Commit 136804de authored by Mike McCormack's avatar Mike McCormack Committed by Alexandre Julliard

crypt32: Fix a integer to pointer cast.

parent 2acf800f
......@@ -951,7 +951,7 @@ static void init_oid_info(HINSTANCE hinst)
}
else
{
int len = LoadStringW(hinst, (UINT)oidInfoConstructors[i].pwszName,
int len = LoadStringW(hinst, (UINT_PTR)oidInfoConstructors[i].pwszName,
NULL, 0);
if (len)
......
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