From d14732d366c259e68f5a5719793022d565b05e9c Mon Sep 17 00:00:00 2001 From: Eitan Adler Date: Wed, 23 May 2018 12:10:16 +0000 Subject: [PATCH] kldstat: align size to the right This makes it easier to compare numbers directly. PR: 215747 Submitted by: "Alexander von Gernler" --- sbin/kldstat/kldstat.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } }