From dd6cf019f3425e7e8bd56c6c76ee6f701221df79 Mon Sep 17 00:00:00 2001 From: Robert Watson Date: Fri, 21 May 2004 21:15:48 +0000 Subject: [PATCH] When the 'f' flag is passed to ktrdump(1), use 40 characters for the "file and line" field consistently; previously, a 32-character field length was used for the table header, which resulted in the header not lining up with the table. --- usr.bin/ktrdump/ktrdump.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr.bin/ktrdump/ktrdump.c b/usr.bin/ktrdump/ktrdump.c index 7083640ba9e2..dcae2a71d243 100644 --- a/usr.bin/ktrdump/ktrdump.c +++ b/usr.bin/ktrdump/ktrdump.c @@ -182,7 +182,7 @@ main(int ac, char **av) if (tflag) fprintf(out, "%-16s ", "timestamp"); if (fflag) - fprintf(out, "%-32s ", "file and line"); + fprintf(out, "%-40s ", "file and line"); fprintf(out, "%s", "trace"); fprintf(out, "\n");