diff options
author | tjr <tjr@FreeBSD.org> | 2003-01-21 10:06:04 +0000 |
---|---|---|
committer | tjr <tjr@FreeBSD.org> | 2003-01-21 10:06:04 +0000 |
commit | 81914313b70a23af07be326b0267a51d6c980563 (patch) | |
tree | bf1f262f2aa112a905a60705905c99bfa6fb5aca /bin | |
parent | edd5efa7354254cc83ee86d83403f0eff8458f6a (diff) | |
download | FreeBSD-src-81914313b70a23af07be326b0267a51d6c980563.zip FreeBSD-src-81914313b70a23af07be326b0267a51d6c980563.tar.gz |
Make this compile with DEBUG defined now that WARNS=0 has been removed
from the Makefile:
- Print pointers with %p instead of %x.
- Include missing headers to get prototypes.
Noticed by: benno
Diffstat (limited to 'bin')
-rw-r--r-- | bin/sh/eval.c | 2 | ||||
-rw-r--r-- | bin/sh/jobs.c | 2 | ||||
-rw-r--r-- | bin/sh/show.c | 2 |
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> |