Eric Pouech : wscript: Use correct integral type.

Alexandre Julliard julliard at winehq.org
Tue Jan 25 15:41:20 CST 2022


Module: wine
Branch: master
Commit: 53b179dcc14aae1ae124499841aa3f5cb468b277
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=53b179dcc14aae1ae124499841aa3f5cb468b277

Author: Eric Pouech <eric.pouech at gmail.com>
Date:   Tue Jan 25 09:40:30 2022 +0100

wscript: Use correct integral type.

Signed-off-by: Eric Pouech <eric.pouech at gmail.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 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-cvs mailing list