diff options
Diffstat (limited to 'common/exechelp-w32ce.c')
-rw-r--r-- | common/exechelp-w32ce.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/common/exechelp-w32ce.c b/common/exechelp-w32ce.c index 06aa6bcb2..9e72ceff8 100644 --- a/common/exechelp-w32ce.c +++ b/common/exechelp-w32ce.c @@ -515,7 +515,7 @@ create_process (const char *pgmname, const char *cmdline, /* Fork and exec the PGMNAME, see exechelp.h for details. */ gpg_error_t gnupg_spawn_process (const char *pgmname, const char *argv[], - void (*preexec)(void), unsigned int flags, + int *except, void (*preexec)(void), unsigned int flags, estream_t *r_infp, estream_t *r_outfp, estream_t *r_errfp, @@ -541,6 +541,7 @@ gnupg_spawn_process (const char *pgmname, const char *argv[], estream_t errfp = NULL; gpg_err_source_t errsource = default_errsource; + (void)except; /* Not yet used. */ (void)preexec; (void)flags; |