wscript: Use correct integral type.

Signed-off-by: Eric Pouech <eric.pouech@gmail.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Eric Pouech 2022-01-25 09:40:30 +01:00 committed by Alexandre Julliard
parent 21fa9fa36a
commit 53b179dcc1
1 changed files with 1 additions and 1 deletions

View File

@ -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;