X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=signal.c;h=3d1883f5f4b65f0c01b7b8944c6afbdb0d5f717c;hp=55499796e8ccd8ff73751182a796cd4006b63508;hb=ff5830c9fc83ee59be9351c7ff45c1e376bac22b;hpb=33fd098da75b01acc09cb7695800e7488420f552 diff --git a/signal.c b/signal.c index 55499796..3d1883f5 100644 --- a/signal.c +++ b/signal.c @@ -85,13 +85,13 @@ int para_reap_child(pid_t *pid) if (*pid < 0) return -ERRNO_TO_PARA_ERROR(errno); if (WIFEXITED(status)) - PARA_DEBUG_LOG("child %i exited. Exit status: %i\n", *pid, + PARA_DEBUG_LOG("child %i exited. Exit status: %i\n", (int)*pid, WEXITSTATUS(status)); else if (WIFSIGNALED(status)) - PARA_DEBUG_LOG("child %i was killed by signal %i\n", *pid, + PARA_DEBUG_LOG("child %i was killed by signal %i\n", (int)*pid, WTERMSIG(status)); else - PARA_WARNING_LOG("child %i terminated abormally\n", *pid); + PARA_WARNING_LOG("child %i terminated abormally\n", (int)*pid); return 1; }