diff options
Diffstat (limited to 'common/exechelp-w32.c')
-rw-r--r-- | common/exechelp-w32.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/common/exechelp-w32.c b/common/exechelp-w32.c index f63341e7c..08290e442 100644 --- a/common/exechelp-w32.c +++ b/common/exechelp-w32.c @@ -437,6 +437,7 @@ check_syscall_func (void) } } + static void pre_syscall (void) { @@ -444,6 +445,7 @@ pre_syscall (void) pre_syscall_func (); } + static void post_syscall (void) { @@ -579,7 +581,7 @@ spawn_detached (const char *pgmname, char *cmdline, cr_flags, /* Creation flags. */ NULL, /* Environment. */ NULL, /* Use current drive/directory. */ - (STARTUPINFOW *)&si, /* Startup information. */ + (STARTUPINFOW *)&si, /* Startup information. */ &pi /* Returns process information. */ ); if (!ret) |