Skip to content
Snippets Groups Projects
Commit abb8c077 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard
Browse files

pty_handle is a HANDLE, not an int.

parent ba5bb0bb
No related branches found
No related tags found
No related merge requests found
......@@ -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 */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment