winetest: Don't start test programs with STARTUPINFO.wShowWindow = SW_HIDE.

This commit is contained in:
Mikołaj Zalewski 2006-10-14 20:51:59 +02:00 committed by Alexandre Julliard
parent 4c5de64014
commit 9a13344129
1 changed files with 1 additions and 2 deletions

View File

@ -277,8 +277,7 @@ run_ex (char *cmd, const char *out, DWORD ms)
DWORD wait, status;
GetStartupInfo (&si);
si.wShowWindow = SW_HIDE;
si.dwFlags = STARTF_USESHOWWINDOW;
si.dwFlags = 0;
if (out) {
fd = open (out, O_WRONLY | O_CREAT, 0666);