From b956c13cfe56eae3077dbb877f4ba0a850473cc4 Mon Sep 17 00:00:00 2001 From: Philippe Charnier Date: Sun, 7 Sep 2003 15:50:43 +0000 Subject: [PATCH] Add FBSDID. Do not \n terminate warnx() argument. fprint() -> warnx(). --- usr.bin/truss/main.c | 8 +++----- usr.bin/truss/setup.c | 9 +++------ 2 files changed, 6 insertions(+), 11 deletions(-) diff --git a/usr.bin/truss/main.c b/usr.bin/truss/main.c index 18d46b622e2..0a6cdb568e7 100644 --- a/usr.bin/truss/main.c +++ b/usr.bin/truss/main.c @@ -29,10 +29,8 @@ * SUCH DAMAGE. */ -#ifndef lint -static const char rcsid[] = - "$FreeBSD$"; -#endif /* not lint */ +#include +__FBSDID("$FreeBSD$"); /* * The main module for truss. Suprisingly simple, but, then, the other @@ -129,7 +127,7 @@ set_etype(struct trussinfo *trussinfo) { if (funcs->type == NULL) { funcs = &ex_types[0]; - warn("Execution type %s is not supported -- using %s\n", + warn("execution type %s is not supported -- using %s", progt, funcs->type); } return funcs; diff --git a/usr.bin/truss/setup.c b/usr.bin/truss/setup.c index aedd957a059..2d252a75a09 100644 --- a/usr.bin/truss/setup.c +++ b/usr.bin/truss/setup.c @@ -29,10 +29,8 @@ * SUCH DAMAGE. */ -#ifndef lint -static const char rcsid[] = - "$FreeBSD$"; -#endif /* not lint */ +#include +__FBSDID("$FreeBSD$"); /* * Various setup functions for truss. Not the cleanest-written code, @@ -45,7 +43,6 @@ static const char rcsid[] = #include #include -#include #include #include #include @@ -115,7 +112,7 @@ setup_and_wait(char *command[]) { if (ioctl(fd, PIOCWAIT, &pfs) == -1) err(6, "PIOCWAIT"); if (pfs.why == S_EXIT) { - fprintf(stderr, "process exited before exec'ing\n"); + warnx("process exited before exec'ing"); ioctl(fd, PIOCCONT, 0); wait(0); exit(7);