From edf2979dc8a3f9ecaaf98991f98695003b03a70d Mon Sep 17 00:00:00 2001 From: mainzelm Date: Fri, 1 Sep 2000 07:06:38 +0000 Subject: [PATCH] removed debug message --- scsh/syscalls1.c | 1 - 1 file changed, 1 deletion(-) diff --git a/scsh/syscalls1.c b/scsh/syscalls1.c index f053c38..0dcdd90 100644 --- a/scsh/syscalls1.c +++ b/scsh/syscalls1.c @@ -64,7 +64,6 @@ s48_value wait_pid(s48_value s48_pid, s48_value s48_flags) pid_t result_pid; result_pid = waitpid(pid, &status, flags); - fprintf (stderr, "status was %d \n", status); return s48_cons ((result_pid == -1) ? s48_enter_fixnum(errno) : S48_FALSE, s48_cons (s48_enter_integer (result_pid), s48_cons (s48_enter_integer (status),