mirror of
git://git.gnupg.org/gnupg.git
synced 2025-04-17 15:44:34 +02:00
dirmngr: Add missing cast for use of pid_t in printf.
--
This commit is contained in:
parent
82c72e2db7
commit
eb4d33cba9
@ -234,7 +234,7 @@ read_log_data (struct wrapper_context_s *ctx)
|
|||||||
{
|
{
|
||||||
if (n < 0)
|
if (n < 0)
|
||||||
log_error (_("error reading log from ldap wrapper %d: %s\n"),
|
log_error (_("error reading log from ldap wrapper %d: %s\n"),
|
||||||
ctx->pid, strerror (errno));
|
(int)ctx->pid, strerror (errno));
|
||||||
print_log_line (ctx, NULL);
|
print_log_line (ctx, NULL);
|
||||||
SAFE_CLOSE (ctx->log_fd);
|
SAFE_CLOSE (ctx->log_fd);
|
||||||
return 1;
|
return 1;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user