diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2002-05-26 10:37:59 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2002-05-26 10:37:59 +0000 |
commit | e10c21b7de93425629034ab53bcba0ed9f4050bd (patch) | |
tree | eca0cdcc73c432967aee6b4119080f3c3cb50a73 /usr.sbin | |
parent | c136d8e9d5e0f0316c19a749eff749951a95ce20 (diff) |
missed two pid_t conversions; moritz@jodeit.org
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/amd/amd/sched.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/amd/amd/sched.c b/usr.sbin/amd/amd/sched.c index 541d5ea3b84..ad624f2db33 100644 --- a/usr.sbin/amd/amd/sched.c +++ b/usr.sbin/amd/amd/sched.c @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * from: @(#)sched.c 8.1 (Berkeley) 6/6/93 - * $Id: sched.c,v 1.5 2002/05/26 02:49:50 deraadt Exp $ + * $Id: sched.c,v 1.6 2002/05/26 10:37:58 deraadt Exp $ */ /* @@ -215,11 +215,11 @@ int sig; pjob *p, *p2; if (WIFSIGNALED(w)) - plog(XLOG_ERROR, "Process %d exited with signal %ld", + plog(XLOG_ERROR, "Process %ld exited with signal %ld", (long)pid, w.w_termsig); #ifdef DEBUG else - dlog("Process %d exited with status %ld", + dlog("Process %ld exited with status %ld", (long)pid, w.w_retcode); #endif /* DEBUG */ |