From 53b179dcc14aae1ae124499841aa3f5cb468b277 Mon Sep 17 00:00:00 2001 From: Eric Pouech Date: Tue, 25 Jan 2022 09:40:30 +0100 Subject: [PATCH] wscript: Use correct integral type. Signed-off-by: Eric Pouech Signed-off-by: Alexandre Julliard --- programs/wscript/host.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/programs/wscript/host.c b/programs/wscript/host.c index e20d3132f16..8765dd271f4 100644 --- a/programs/wscript/host.c +++ b/programs/wscript/host.c @@ -314,7 +314,7 @@ static HRESULT WINAPI Host_Echo(IHost *iface, SAFEARRAY *args) { WCHAR *output = NULL, *ptr; unsigned argc, i, len; - int ubound, lbound; + LONG ubound, lbound; VARIANT *argv; BSTR *strs; HRESULT hres;