Set default StdError to fd 2 (was on 1).

This commit is contained in:
Eric Pouech 2003-09-18 20:54:32 +00:00 committed by Alexandre Julliard
parent fb9c47d522
commit e69ef68fc2
1 changed files with 1 additions and 1 deletions

View File

@ -337,7 +337,7 @@ static BOOL process_init( char *argv[] )
*/
wine_server_fd_to_handle( 0, GENERIC_READ|SYNCHRONIZE, TRUE, &process_pmts.hStdInput );
wine_server_fd_to_handle( 1, GENERIC_WRITE|SYNCHRONIZE, TRUE, &process_pmts.hStdOutput );
wine_server_fd_to_handle( 1, GENERIC_WRITE|SYNCHRONIZE, TRUE, &process_pmts.hStdError );
wine_server_fd_to_handle( 2, GENERIC_WRITE|SYNCHRONIZE, TRUE, &process_pmts.hStdError );
}
else
{