From: Ben Gras Date: Wed, 7 Sep 2005 11:20:53 +0000 (+0000) Subject: No newline for this error (dead dest) X-Git-Tag: v3.1.0~168 X-Git-Url: http://zhaoyanbai.com/repos/Bv9ARM.ch08.html?a=commitdiff_plain;h=c79dfb2e41c830570184815a6e44f636a3567fe9;p=minix.git No newline for this error (dead dest) --- diff --git a/kernel/proc.c b/kernel/proc.c index bb6dda332..3b49c67f1 100755 --- a/kernel/proc.c +++ b/kernel/proc.c @@ -150,8 +150,8 @@ message *m_ptr; /* pointer to message in the caller's space */ } if (isemptyn(src_dst)) { - kprintf("sys_call: dead destination, function %d, caller %d\n", - function, proc_nr(caller_ptr)); + kprintf("[sys_call: dead dest; %d, %d, %d] ", + function, proc_nr(caller_ptr), src_dst); return(EDEADDST); /* cannot send to the dead */ } }