From 950caf7407014ff226d7c1c44fd1224f08b9e2ca Mon Sep 17 00:00:00 2001 From: Peter Avalos Date: Sun, 15 Jul 2012 00:40:55 -0700 Subject: [PATCH] sh: Fix build with -DDEBUG=2. Obtained-from: FreeBSD 233792 --- bin/sh/jobs.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bin/sh/jobs.c b/bin/sh/jobs.c index 33dd86a366..a0be96ceda 100644 --- a/bin/sh/jobs.c +++ b/bin/sh/jobs.c @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * @(#)jobs.c 8.5 (Berkeley) 5/4/95 - * $FreeBSD: src/bin/sh/jobs.c,v 1.97 2012/02/04 23:12:14 jilles Exp $ + * $FreeBSD: src/bin/sh/jobs.c,v 1.98 2012/04/02 17:16:24 jilles Exp $ */ #include @@ -891,8 +891,8 @@ vforkexecshell(struct job *jp, char **argv, char **envp, const char *path, int i struct jmploc jmploc; struct jmploc *savehandler; - TRACE(("vforkexecshell(%%%td, %p, %d) called\n", jp - jobtab, (void *)n, - mode)); + TRACE(("vforkexecshell(%%%td, %s, %p) called\n", jp - jobtab, argv[0], + (void *)pip)); INTOFF; flushall(); savehandler = handler; -- 2.11.4.GIT