svn commit: r233792 - head/bin/sh

Jilles Tjoelker jilles at FreeBSD.org
Mon Apr 2 17:16:25 UTC 2012


Author: jilles
Date: Mon Apr  2 17:16:24 2012
New Revision: 233792
URL: http://svn.freebsd.org/changeset/base/233792

Log:
  sh: Fix build with -DDEBUG=2.
  
  Reported by:	Kristof Provost
  MFC after:	1 week

Modified:
  head/bin/sh/jobs.c

Modified: head/bin/sh/jobs.c
==============================================================================
--- head/bin/sh/jobs.c	Mon Apr  2 16:50:48 2012	(r233791)
+++ head/bin/sh/jobs.c	Mon Apr  2 17:16:24 2012	(r233792)
@@ -893,8 +893,8 @@ vforkexecshell(struct job *jp, char **ar
 	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;


More information about the svn-src-head mailing list