summaryrefslogtreecommitdiffstats
path: root/usr.bin
diff options
context:
space:
mode:
authorrwatson <rwatson@FreeBSD.org>2004-05-21 21:15:48 +0000
committerrwatson <rwatson@FreeBSD.org>2004-05-21 21:15:48 +0000
commitbc5a4332ffe1a4e8e18be591ae04b502caf44fe3 (patch)
tree8c6c3e0b8a45bf4c7205cb1ccda54683c55a8390 /usr.bin
parent0d857d9bf6eff24311b6958f0727c21593f46973 (diff)
downloadFreeBSD-src-bc5a4332ffe1a4e8e18be591ae04b502caf44fe3.zip
FreeBSD-src-bc5a4332ffe1a4e8e18be591ae04b502caf44fe3.tar.gz
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.
Diffstat (limited to 'usr.bin')
-rw-r--r--usr.bin/ktrdump/ktrdump.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/ktrdump/ktrdump.c b/usr.bin/ktrdump/ktrdump.c
index 7083640..dcae2a7 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");
OpenPOWER on IntegriCloud