aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/vmstat/vmstat.c
diff options
context:
space:
mode:
authorEdward Tomasz Napierala <trasz@FreeBSD.org>2019-10-29 20:28:02 +0000
committerEdward Tomasz Napierala <trasz@FreeBSD.org>2019-10-29 20:28:02 +0000
commit5a84f74f5b7870e1dafa63cafbb1ae3e62eaa1a9 (patch)
treed4d526990e1fc4b1511c20accac044fb8ad2d47d /usr.bin/vmstat/vmstat.c
parent62de73eaf13ff0d81c1ad72b8ed98836420c1143 (diff)
downloadsrc-5a84f74f5b7870e1dafa63cafbb1ae3e62eaa1a9.tar.gz
src-5a84f74f5b7870e1dafa63cafbb1ae3e62eaa1a9.zip
Fix column title alignment.
MFC after: 2 weeks
Notes
Notes: svn path=/head/; revision=354154
Diffstat (limited to 'usr.bin/vmstat/vmstat.c')
-rw-r--r--usr.bin/vmstat/vmstat.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/vmstat/vmstat.c b/usr.bin/vmstat/vmstat.c
index 635a0d614304..8f13d5a164c5 100644
--- a/usr.bin/vmstat/vmstat.c
+++ b/usr.bin/vmstat/vmstat.c
@@ -867,11 +867,11 @@ printhdr(int maxid, u_long cpumask)
num_shown = MIN(num_selected, maxshowdevs);
if (hflag)
- xo_emit("{T:procs} {T:memory} {T:/page%*s}", 19, "");
+ xo_emit("{T:procs} {T:memory} {T:/page%*s}", 19, "");
else
- xo_emit("{T:procs} {T:memory} {T:/page%*s}", 19, "");
+ xo_emit("{T:procs} {T:memory} {T:/page%*s}", 19, "");
if (num_shown > 1)
- xo_emit(" {T:/disks %*s}", num_shown * 4 - 7, "");
+ xo_emit(" {T:/disks %*s}", num_shown * 4 - 7, "");
else if (num_shown == 1)
xo_emit(" {T:disks}");
xo_emit(" {T:faults} ");