From b8eddf00d84097a092f814eecdae9af823942cb2 Mon Sep 17 00:00:00 2001 From: Ben Gras Date: Thu, 6 May 2010 22:39:11 +0000 Subject: [PATCH] kernel: don't try to lookup ANY in debug output. --- kernel/debug.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kernel/debug.c b/kernel/debug.c index beaa6daf5..4199fc2d7 100644 --- a/kernel/debug.c +++ b/kernel/debug.c @@ -217,7 +217,7 @@ PRIVATE void print_proc_depends(struct proc *pp, const int level) dep = P_BLOCKEDON(pp); - if(dep != NONE) { + if(dep != NONE && dep != ANY) { int procno; if(isokendpt(dep, &procno)) { depproc = proc_addr(procno); -- 2.44.0