summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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);
}
}