summaryrefslogtreecommitdiffstats
path: root/bin/sh
diff options
context:
space:
mode:
Diffstat (limited to 'bin/sh')
-rw-r--r--bin/sh/eval.c2
-rw-r--r--bin/sh/jobs.c2
-rw-r--r--bin/sh/show.c2
3 files changed, 4 insertions, 2 deletions
diff --git a/bin/sh/eval.c b/bin/sh/eval.c
index 9f9844c..412f650 100644
--- a/bin/sh/eval.c
+++ b/bin/sh/eval.c
@@ -580,7 +580,7 @@ evalbackcmd(union node *n, struct backcmd *result)
}
out:
popstackmark(&smark);
- TRACE(("evalbackcmd done: fd=%d buf=0x%x nleft=%d jp=0x%x\n",
+ TRACE(("evalbackcmd done: fd=%d buf=%p nleft=%d jp=%p\n",
result->fd, result->buf, result->nleft, result->jp));
}
diff --git a/bin/sh/jobs.c b/bin/sh/jobs.c
index 129f372..cdd921b 100644
--- a/bin/sh/jobs.c
+++ b/bin/sh/jobs.c
@@ -982,7 +982,7 @@ dowait(int block, struct job *job)
showjob(thisjob, pid, 0, 0);
}
} else {
- TRACE(("Not printing status, rootshell=%d, job=0x%x\n", rootshell, job));
+ TRACE(("Not printing status, rootshell=%d, job=%p\n", rootshell, job));
if (thisjob)
thisjob->changed = 1;
}
diff --git a/bin/sh/show.c b/bin/sh/show.c
index bc2ea28..7f19a51 100644
--- a/bin/sh/show.c
+++ b/bin/sh/show.c
@@ -42,7 +42,9 @@ static char sccsid[] = "@(#)show.c 8.3 (Berkeley) 5/4/95";
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
+#include <fcntl.h>
#include <stdio.h>
+#include <stdlib.h>
#include <stdarg.h>
#include <errno.h>
OpenPOWER on IntegriCloud