Duh! get the scaling right.

This commit is contained in:
Poul-Henning Kamp 2000-06-01 08:49:46 +00:00
parent 0e5064d228
commit fb7a8c91b8
1 changed files with 3 additions and 3 deletions

View File

@ -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);