Module: wine Branch: master Commit: e785da84bd8becffd8bf44d089615a400940b061 URL: https://source.winehq.org/git/wine.git/?a=commit;h=e785da84bd8becffd8bf44d08...
Author: Eric Pouech eric.pouech@gmail.com Date: Thu Jan 27 10:17:41 2022 +0100
adsldp: Use correct integral type.
Signed-off-by: Eric Pouech eric.pouech@gmail.com Signed-off-by: Alexandre Julliard julliard@winehq.org
---
dlls/adsldp/adsldp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/adsldp/adsldp.c b/dlls/adsldp/adsldp.c index 3d5ea29882c..8039065eff3 100644 --- a/dlls/adsldp/adsldp.c +++ b/dlls/adsldp/adsldp.c @@ -245,7 +245,7 @@ static HRESULT WINAPI sysinfo_get_UserName(IADsADSystemInfo *iface, BSTR *retval
static HRESULT WINAPI sysinfo_get_ComputerName(IADsADSystemInfo *iface, BSTR *retval) { - UINT size; + ULONG size; WCHAR *name;
TRACE("%p,%p\n", iface, retval);