From abb8c07746a126fe23e493e16f789516001877d7 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Fran=C3=A7ois=20Gouget?= <fgouget@codeweavers.com>
Date: Tue, 9 Jan 2001 20:50:51 +0000
Subject: [PATCH] pty_handle is a HANDLE, not an int.

---
 win32/console.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/win32/console.c b/win32/console.c
index 7f83b787dbf..f545e08197a 100644
--- a/win32/console.c
+++ b/win32/console.c
@@ -583,7 +583,8 @@ static BOOL CONSOLE_make_complex(HANDLE handle)
 	struct termios term;
 	char buf[256];
 	char c = '\0';
-	int i,xpid,master,slave,pty_handle;
+	int i,xpid,master,slave;
+        HANDLE pty_handle;
 
         if (CONSOLE_GetPid( handle )) return TRUE; /* already complex */
 
-- 
GitLab