diff options
author | NIIBE Yutaka <[email protected]> | 2018-11-07 09:42:18 +0000 |
---|---|---|
committer | NIIBE Yutaka <[email protected]> | 2018-11-07 09:42:18 +0000 |
commit | b39b44b9acbed6d4889acba4fe9eae2556c80acc (patch) | |
tree | 589f2a86995cd26bc6870494a169f54dbda6e42d | |
parent | gpgrt-config: Don't support variable reference in --libdir option. (diff) | |
download | libgpg-error-b39b44b9acbed6d4889acba4fe9eae2556c80acc.tar.gz libgpg-error-b39b44b9acbed6d4889acba4fe9eae2556c80acc.zip |
Fix a typo.
* src/spawn-w32.c (src/spawn-w32.c): Fix to use pid_to_handle.
Signed-off-by: NIIBE Yutaka <[email protected]>
-rw-r--r-- | src/spawn-w32.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/spawn-w32.c b/src/spawn-w32.c index e8c2eb0..4c57756 100644 --- a/src/spawn-w32.c +++ b/src/spawn-w32.c @@ -735,7 +735,7 @@ _gpgrt_wait_processes (const char **pgmnames, pid_t *pids, size_t count, if (pids[i] == (pid_t)(-1)) return GPG_ERR_INV_VALUE; - procs[i] = fd_to_handle (pids[i]); + procs[i] = pid_to_handle (pids[i]); } _gpgrt_pre_syscall (); |