pty_handle is a HANDLE, not an int.

This commit is contained in:
François Gouget 2001-01-09 20:50:51 +00:00 committed by Alexandre Julliard
parent ba5bb0bb11
commit abb8c07746

View file

@ -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 */