diff options
author | 2008-07-07 17:16:27 +0000 | |
---|---|---|
committer | 2008-07-07 17:16:27 +0000 | |
commit | 5490ab03cc8e42b16f85f63514878b24a5b42721 (patch) | |
tree | 59152886aa45d8430c68e176284309cb5635ae26 | |
parent | The current drm_locked_task*() code sometimes tries to sleep in an (diff) | |
download | wireguard-openbsd-5490ab03cc8e42b16f85f63514878b24a5b42721.tar.xz wireguard-openbsd-5490ab03cc8e42b16f85f63514878b24a5b42721.zip |
bcachestats got bumbed too u_int64_t's and I forgot about
munging systat to handle the field with;
pointed out by mickey
ok canacar@
-rw-r--r-- | usr.bin/systat/iostat.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/systat/iostat.c b/usr.bin/systat/iostat.c index d9b24498cfe..7a9e369156b 100644 --- a/usr.bin/systat/iostat.c +++ b/usr.bin/systat/iostat.c @@ -1,4 +1,4 @@ -/* $OpenBSD: iostat.c,v 1.31 2008/06/13 08:18:47 canacar Exp $ */ +/* $OpenBSD: iostat.c,v 1.32 2008/07/07 17:16:27 thib Exp $ */ /* $NetBSD: iostat.c,v 1.5 1996/05/10 23:16:35 thorpej Exp $ */ /* @@ -66,7 +66,7 @@ field_def fields_io[] = { {"RTPS", 5, 8, 1, FLD_ALIGN_RIGHT, -1, 0, 0, 0}, {"WTPS", 5, 8, 1, FLD_ALIGN_RIGHT, -1, 0, 0, 0}, {"SEC", 5, 8, 1, FLD_ALIGN_RIGHT, -1, 0, 0, 0}, - {"", 8, 10, 1, FLD_ALIGN_RIGHT, -1, 0, 0, 0}, + {"", 8, 19, 1, FLD_ALIGN_RIGHT, -1, 0, 0, 0}, {"STATS", 12, 15, 1, FLD_ALIGN_LEFT, -1, 0, 0, 0} }; |