diff options
author | 2013-06-04 21:17:45 +0000 | |
---|---|---|
committer | 2013-06-04 21:17:45 +0000 | |
commit | 492ad8171153decaab05cd2060e4b6b00d49061f (patch) | |
tree | 8f019b4edaa406ffcb4c3ade772bd179a6c1039e | |
parent | not sure who uses the "alternate" display, but the columns look like ass (diff) | |
download | wireguard-openbsd-492ad8171153decaab05cd2060e4b6b00d49061f.tar.xz wireguard-openbsd-492ad8171153decaab05cd2060e4b6b00d49061f.zip |
tweak the headers header too
-rw-r--r-- | usr.sbin/iostat/iostat.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/iostat/iostat.c b/usr.sbin/iostat/iostat.c index 149e6d4378f..704ac7f3902 100644 --- a/usr.sbin/iostat/iostat.c +++ b/usr.sbin/iostat/iostat.c @@ -1,4 +1,4 @@ -/* $OpenBSD: iostat.c,v 1.29 2013/06/04 21:14:28 tedu Exp $ */ +/* $OpenBSD: iostat.c,v 1.30 2013/06/04 21:17:45 tedu Exp $ */ /* $NetBSD: iostat.c,v 1.10 1996/10/25 18:21:58 scottr Exp $ */ /* @@ -210,12 +210,12 @@ header(void) if (ISSET(todo, SHOW_STATS_1)) for (i = 0; i < dk_ndrive; i++) if (cur.dk_select[i]) - (void)printf(" %14.14s ", cur.dk_name[i]); + (void)printf(" %16.16s ", cur.dk_name[i]); if (ISSET(todo, SHOW_STATS_2)) for (i = 0; i < dk_ndrive; i++) if (cur.dk_select[i]) - (void)printf(" %13.13s ", cur.dk_name[i]); + (void)printf(" %16.16s ", cur.dk_name[i]); if (ISSET(todo, SHOW_CPU)) (void)printf(" cpu"); |