aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaxim Sobolev <sobomax@FreeBSD.org>2023-12-05 01:39:21 +0000
committerMaxim Sobolev <sobomax@FreeBSD.org>2023-12-05 01:48:21 +0000
commit4d4b3a34267787a03f03125fc01532ff2f8539d1 (patch)
tree19bddd2aab09e8638f8484dabad3c58467758d1d
parent6c5e70a22c41bf3ebe3e9a68f1c9ac29775809fb (diff)
downloadsrc-4d4b3a34267787a03f03125fc01532ff2f8539d1.tar.gz
src-4d4b3a34267787a03f03125fc01532ff2f8539d1.zip
vmstat: fix column names broken in c168508655720
Loss of the trailing space in the multi-line format string has resulted in column name being emitted as "FAILSLEEP", instead of two columns "FAIL" and "SLEEP". (cherry picked from commit 62d47a4db4579315d7b89002d7de696b44ae1415)
-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 50a31dc287f7..bb465eda4966 100644
--- a/usr.bin/vmstat/vmstat.c
+++ b/usr.bin/vmstat/vmstat.c
@@ -1488,7 +1488,7 @@ domemstat_zone(void)
}
}
xo_open_container("memory-zone-statistics");
- xo_emit("{T:/%-20s} {T:/%6s} {T:/%6s} {T:/%8s} {T:/%8s} {T:/%8s} {T:/%8s}"
+ xo_emit("{T:/%-20s} {T:/%6s} {T:/%6s} {T:/%8s} {T:/%8s} {T:/%8s} {T:/%8s} "
"{T:/%4s} {T:/%4s}\n", "ITEM", "SIZE",
"LIMIT", "USED", "FREE", "REQ", "FAIL", "SLEEP", "XDOMAIN");
xo_open_list("zone");