aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--win32/process.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/win32/process.c b/win32/process.c
index a31023500..5be07e54a 100644
--- a/win32/process.c
+++ b/win32/process.c
@@ -277,7 +277,7 @@ create_detached_process(const char *prog, char *const *argv)
277 NULL, /* process security attributes */ 277 NULL, /* process security attributes */
278 NULL, /* primary thread security attributes */ 278 NULL, /* primary thread security attributes */
279 TRUE, /* handles are inherited */ 279 TRUE, /* handles are inherited */
280 DETACHED_PROCESS, /* creation flags */ 280 CREATE_NO_WINDOW, /* creation flags */
281 NULL, /* use parent's environment */ 281 NULL, /* use parent's environment */
282 NULL, /* use parent's current directory */ 282 NULL, /* use parent's current directory */
283 &siStartInfo, /* STARTUPINFO pointer */ 283 &siStartInfo, /* STARTUPINFO pointer */