From 5fab63dc0d10b59638c58eb74ed68233c25712e4 Mon Sep 17 00:00:00 2001 From: mainzelm Date: Thu, 19 Oct 2000 08:40:17 +0000 Subject: [PATCH] Removed warning that occurred when procobj was already gc'ed. --- scsh/procobj.scm | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/scsh/procobj.scm b/scsh/procobj.scm index 542cf43..58ada9c 100644 --- a/scsh/procobj.scm +++ b/scsh/procobj.scm @@ -296,8 +296,7 @@ (cond ((maybe-pid->proc pid) => (lambda (proc) (obituary proc status) - (push-reaped-proc proc))) - (else (warn "reaped pid had no procobj" pid)))) + (push-reaped-proc proc))))) ;;; All you have to do, if a wait on proc was successful