Commit abb8c077 authored by François Gouget's avatar François Gouget Committed by Alexandre Julliard

pty_handle is a HANDLE, not an int.

parent ba5bb0bb
......@@ -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 */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment