diff options
author | jkh <jkh@FreeBSD.org> | 1996-06-11 16:18:58 +0000 |
---|---|---|
committer | jkh <jkh@FreeBSD.org> | 1996-06-11 16:18:58 +0000 |
commit | ab0ef148aeb8f95b582d87536bd38ed68b2bbf01 (patch) | |
tree | baf8ff8be11d16eed554e1829cd1e42ab969e4a9 /usr.bin/systat/vmstat.c | |
parent | fac3b958bc4812d1b5a5f9cc95a767b94a896947 (diff) | |
download | FreeBSD-src-ab0ef148aeb8f95b582d87536bd38ed68b2bbf01.zip FreeBSD-src-ab0ef148aeb8f95b582d87536bd38ed68b2bbf01.tar.gz |
Cosmetic fixes for drive names which are 4 chars long.
Submitted-By: Joe Greco <jgreco@ns.sol.net>
Diffstat (limited to 'usr.bin/systat/vmstat.c')
-rw-r--r-- | usr.bin/systat/vmstat.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/systat/vmstat.c b/usr.bin/systat/vmstat.c index bfbde6c..5516b19 100644 --- a/usr.bin/systat/vmstat.c +++ b/usr.bin/systat/vmstat.c @@ -330,7 +330,7 @@ labelkre() for (i = 0; i < dk_ndrive && j < MAXDRIVES; i++) if (dk_select[i]) { mvprintw(DISKROW, DISKCOL + 5 + 5 * j, - " %3.3s", dr_name[j]); + " %4.4s", dr_name[j]); j++; } for (i = 0; i < nintr; i++) { @@ -476,7 +476,7 @@ showkre() for (i = 0, c = 0; i < dk_ndrive && c < MAXDRIVES; i++) if (dk_select[i]) { mvprintw(DISKROW, DISKCOL + 5 + 5 * c, - " %3.3s", dr_name[i]); + " %4.4s", dr_name[i]); dinfo(i, ++c); } putint(s.nchcount, NAMEIROW + 2, NAMEICOL, 9); |