[PATCH] programs/wscript: use correct integral type

Eric Pouech eric.pouech at gmail.com
Tue Jan 25 02:40:30 CST 2022


Signed-off-by: Eric Pouech <eric.pouech at gmail.com>

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




More information about the wine-devel mailing list