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.
This commit is contained in:
Robert Watson 2004-05-21 21:15:48 +00:00
parent 5fe9116b72
commit dd6cf019f3
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=129558

View File

@ -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");