Module: wine Branch: refs/heads/master Commit: 136804de7e1b1a03585e66ea38df5f2056d3dd33 URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=136804de7e1b1a03585e66ea...
Author: Mike McCormack mike@codeweavers.com Date: Thu May 25 13:46:14 2006 +0900
crypt32: Fix a integer to pointer cast.
---
dlls/crypt32/oid.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/crypt32/oid.c b/dlls/crypt32/oid.c index 78eab97..7e5b0fa 100644 --- a/dlls/crypt32/oid.c +++ b/dlls/crypt32/oid.c @@ -951,7 +951,7 @@ static void init_oid_info(HINSTANCE hins } else { - int len = LoadStringW(hinst, (UINT)oidInfoConstructors[i].pwszName, + int len = LoadStringW(hinst, (UINT_PTR)oidInfoConstructors[i].pwszName, NULL, 0);
if (len)