From 5be97e72e61a9bcf33277ec83345b3323cd7539f Mon Sep 17 00:00:00 2001 From: Xin LI Date: Thu, 7 Feb 2013 19:00:54 +0000 Subject: [PATCH] Catch TRACE parameters up with r238888. This change is only needed when debugging is enabled. --- bin/sh/jobs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/sh/jobs.c b/bin/sh/jobs.c index d2e1d57ecf2..c86394f0d46 100644 --- a/bin/sh/jobs.c +++ b/bin/sh/jobs.c @@ -1030,7 +1030,7 @@ dowait(int mode, struct job *job) int wflags; int restore_sigchld; - TRACE(("dowait(%d) called\n", block)); + TRACE(("dowait(%d, %p) called\n", mode, job)); restore_sigchld = 0; if ((mode & DOWAIT_SIG) != 0) { sigfillset(&mask);