kernel: don't try to lookup ANY in debug output.
This commit is contained in:
parent
0194fe55dc
commit
b8eddf00d8
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue