diff options
| author | Poul-Henning Kamp <phk@FreeBSD.org> | 2000-06-01 08:49:46 +0000 |
|---|---|---|
| committer | Poul-Henning Kamp <phk@FreeBSD.org> | 2000-06-01 08:49:46 +0000 |
| commit | fb7a8c91b8d6cc954a9a39171e5322d2d8bfd310 (patch) | |
| tree | cbfa2a087c681185372834cb470f2f6c727e2daf /usr.bin | |
| parent | 0e5064d2280ca44fb177808420ac6d6f15e73989 (diff) | |
Notes
Diffstat (limited to 'usr.bin')
| -rw-r--r-- | usr.bin/systat/iostat.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/systat/iostat.c b/usr.bin/systat/iostat.c index d3f263cf4c16..ac2fe0b2c76c 100644 --- a/usr.bin/systat/iostat.c +++ b/usr.bin/systat/iostat.c @@ -348,12 +348,12 @@ devstats(row, col, dn) return(row); } wmove(wnd, row++, col); - histogram(mb_per_second, 100, 1.0); + histogram(mb_per_second, 50, .5); wmove(wnd, row++, col); - histogram(transfers_per_second, 50, 1.0); + histogram(transfers_per_second, 50, .5); if (kbpt) { wmove(wnd, row++, col); - histogram(kb_per_transfer, 50, 1.0); + histogram(kb_per_transfer, 50, .5); } return(row); |
