Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 23 Jun 2020 18:19:23 +0000 (UTC)
From:      Piotr Pawel Stefaniak <pstef@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r362547 - head/usr.sbin/pstat
Message-ID:  <202006231819.05NIJNc0016663@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: pstef
Date: Tue Jun 23 18:19:22 2020
New Revision: 362547
URL: https://svnweb.freebsd.org/changeset/base/362547

Log:
  pstat(8): improve the Size header width after r358181
  
  All size values use fields of width 8. Also, all other headers use fields of
  width 8. Make the Size header added in r358181 use 8 characters as well.

Modified:
  head/usr.sbin/pstat/pstat.c

Modified: head/usr.sbin/pstat/pstat.c
==============================================================================
--- head/usr.sbin/pstat/pstat.c	Tue Jun 23 17:17:13 2020	(r362546)
+++ head/usr.sbin/pstat/pstat.c	Tue Jun 23 18:19:22 2020	(r362547)
@@ -475,7 +475,7 @@ print_swap_header(void)
 
 	if (humanflag) {
 		header = SIZEHDR;
-		hlen = sizeof(SIZEHDR);
+		hlen = 8; /* as the hardcoded field width of values */
 	} else {
 		header = getbsize(&hlen, &blocksize);
 	}



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202006231819.05NIJNc0016663>