aboutsummaryrefslogtreecommitdiff
path: root/sbin
diff options
context:
space:
mode:
Diffstat (limited to 'sbin')
-rw-r--r--sbin/kldstat/kldstat.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sbin/kldstat/kldstat.c b/sbin/kldstat/kldstat.c
index b2f12d22dd5c..38918890b879 100644
--- a/sbin/kldstat/kldstat.c
+++ b/sbin/kldstat/kldstat.c
@@ -55,10 +55,10 @@ printmod(int modid)
warn("can't stat module id %d", modid);
else
if (showdata) {
- printf("\t\t%2d %s (%d, %u, 0x%lx)\n", stat.id, stat.name,
+ printf("\t\t%3d %s (%d, %u, 0x%lx)\n", stat.id, stat.name,
stat.data.intval, stat.data.uintval, stat.data.ulongval);
} else {
- printf("\t\t%2d %s\n", stat.id, stat.name);
+ printf("\t\t%3d %s\n", stat.id, stat.name);
}
}
@@ -90,7 +90,7 @@ printfile(int fileid, int verbose, int humanized)
if (verbose) {
printf(" (%s)\n", stat.pathname);
printf("\tContains modules:\n");
- printf("\t\tId Name\n");
+ printf("\t\t Id Name\n");
for (modid = kldfirstmod(fileid); modid > 0;
modid = modfnext(modid))
printmod(modid);