aboutsummaryrefslogtreecommitdiffstats
path: root/src/spawn-posix.c
diff options
context:
space:
mode:
authorNIIBE Yutaka <[email protected]>2024-06-06 01:26:37 +0000
committerNIIBE Yutaka <[email protected]>2024-06-06 01:26:37 +0000
commita0d66ac1ff3a90b9c235d068c73a59b8f9939f6e (patch)
tree7ad656b5e5f57b581d54ccf318ac300feba018d2 /src/spawn-posix.c
parentFix return type of gpgrt_b64dec_*. (diff)
downloadlibgpg-error-a0d66ac1ff3a90b9c235d068c73a59b8f9939f6e.tar.gz
libgpg-error-a0d66ac1ff3a90b9c235d068c73a59b8f9939f6e.zip
Cleanup spawn API implementation.
-- Signed-off-by: NIIBE Yutaka <[email protected]>
Diffstat (limited to '')
-rw-r--r--src/spawn-posix.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/spawn-posix.c b/src/spawn-posix.c
index e06cb48..4b1bf9e 100644
--- a/src/spawn-posix.c
+++ b/src/spawn-posix.c
@@ -889,7 +889,7 @@ _gpgrt_process_wait (gpgrt_process_t process, int hang)
if (pid == (pid_t)(-1))
{
ec = _gpg_err_code_from_syserror ();
- _gpgrt_log_info (_("waiting for process %d to terminate failed: %s\n"),
+ _gpgrt_log_info (_("waiting for process %d failed: %s\n"),
(int)pid, _gpg_strerror (ec));
}
else if (!pid)