aboutsummaryrefslogtreecommitdiff
path: root/usr.bin
diff options
context:
space:
mode:
authorMark Johnston <markj@FreeBSD.org>2024-10-13 14:26:47 +0000
committerMark Johnston <markj@FreeBSD.org>2024-10-13 14:32:33 +0000
commit610fcb06ff0c972434f0b4b7a08947c038dd951e (patch)
treec6a32620a18518bdd74259ed2fc885ff30848644 /usr.bin
parent5374b9e146811757540e35553a7712c5b9b29239 (diff)
downloadsrc-610fcb06ff0c972434f0b4b7a08947c038dd951e.tar.gz
src-610fcb06ff0c972434f0b4b7a08947c038dd951e.zip
vmstat: Fix column header alignment in -o output
MFC after: 1 week
Diffstat (limited to 'usr.bin')
-rw-r--r--usr.bin/vmstat/vmstat.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/vmstat/vmstat.c b/usr.bin/vmstat/vmstat.c
index 680eb8bc8fde..bd332c64e7ea 100644
--- a/usr.bin/vmstat/vmstat.c
+++ b/usr.bin/vmstat/vmstat.c
@@ -1567,7 +1567,7 @@ doobjstat(void)
return;
}
xo_emit("{T:RES/%5s} {T:ACT/%5s} {T:INACT/%5s} {T:REF/%3s} {T:SHD/%3s} "
- "{T:CM/%3s} {T:TP/%2s} {T:PATH/%s}\n");
+ "{T:CM/%2s} {T:TP/%3s} {T:PATH/%s}\n");
xo_open_list("object");
for (i = 0; i < cnt; i++)
display_object(&kvo[i]);