summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEitan Adler <eadler@FreeBSD.org>2018-05-23 12:10:16 +0000
committerEitan Adler <eadler@FreeBSD.org>2018-05-23 12:10:16 +0000
commitd14732d366c259e68f5a5719793022d565b05e9c (patch)
treedb6e147c90fca31b5c1a5b859f9291b6052cafdf
parentaa677d07a1b9846933410c7e5d0e92a4cbfb5444 (diff)
Notes
-rw-r--r--sbin/kldstat/kldstat.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sbin/kldstat/kldstat.c b/sbin/kldstat/kldstat.c
index d9e6bef24596..402d95e067a4 100644
--- a/sbin/kldstat/kldstat.c
+++ b/sbin/kldstat/kldstat.c
@@ -80,7 +80,7 @@ printfile(int fileid, int verbose, int humanized)
printf("%2d %4d %p %5s %s",
stat.id, stat.refs, stat.address, buf, stat.name);
} else {
- printf("%2d %4d %p %-8zx %s",
+ printf("%2d %4d %p %8zx %s",
stat.id, stat.refs, stat.address, stat.size, stat.name);
}
}