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:
parent
5fe9116b72
commit
dd6cf019f3
@ -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");
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user