Module: wine Branch: master Commit: 23f9d01aa4ffb278b240050962bea2a006358bdd URL: https://source.winehq.org/git/wine.git/?a=commit;h=23f9d01aa4ffb278b24005096...
Author: Eric Pouech eric.pouech@gmail.com Date: Tue Feb 1 14:05:27 2022 +0100
oleaut32: Use correct integral type.
Signed-off-by: Eric Pouech eric.pouech@gmail.com Signed-off-by: Alexandre Julliard julliard@winehq.org
---
dlls/oleaut32/typelib.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/oleaut32/typelib.c b/dlls/oleaut32/typelib.c index 7dcc8d815a3..2a453a1f0e0 100644 --- a/dlls/oleaut32/typelib.c +++ b/dlls/oleaut32/typelib.c @@ -9890,7 +9890,7 @@ static DWORD WMSFT_compile_typeinfo_aux(ITypeInfoImpl *info, ++memid; }
- name = (UINT*)memid; + name = (DWORD*)memid; for(i = 0; i < info->typeattr.cFuncs; ++i){ TLBFuncDesc *desc = &info->funcdescs[i]; if(desc->Name)