pty_handle is a HANDLE, not an int.
This commit is contained in:
parent
ba5bb0bb11
commit
abb8c07746
|
@ -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 */
|
||||
|
||||
|
|
Loading…
Reference in New Issue