Fix formatting for tps values between 99.95 and 99.99; previously
it would display as "100.0", breaking vertical alignment. MFC after: 2 weeks Differential Revision: https://reviews.freebsd.org/D23538
This commit is contained in:
parent
05d081f5c9
commit
a764336979
@ -929,7 +929,7 @@ devstats(int perf_select, long double etime, int havelast)
|
||||
}
|
||||
free(devicename);
|
||||
} else if (oflag > 0) {
|
||||
int msdig = (ms_per_transaction < 100.0) ? 1 : 0;
|
||||
int msdig = (ms_per_transaction < 99.94) ? 1 : 0;
|
||||
|
||||
if (Iflag == 0)
|
||||
printf("%4.0Lf%4.0Lf%5.*Lf ",
|
||||
|
Loading…
Reference in New Issue
Block a user