git: 020432848ee5 - stable/14 - vmstat: fix column names broken in c168508655720
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Tue, 05 Dec 2023 01:47:25 UTC
The branch stable/14 has been updated by sobomax: URL: https://cgit.FreeBSD.org/src/commit/?id=020432848ee52adf37e5b073b1bdadb84be4dddb commit 020432848ee52adf37e5b073b1bdadb84be4dddb Author: Maxim Sobolev <sobomax@FreeBSD.org> AuthorDate: 2023-12-05 01:39:21 +0000 Commit: Maxim Sobolev <sobomax@FreeBSD.org> CommitDate: 2023-12-05 01:46:57 +0000 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) --- usr.bin/vmstat/vmstat.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr.bin/vmstat/vmstat.c b/usr.bin/vmstat/vmstat.c index a03c28f19d00..fd161a3f93ee 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");