mirror of
https://github.com/opnsense/src.git
synced 2026-06-08 16:22:46 -04:00
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
5ac6a2c94d
commit
125de8263a
1 changed files with 1 additions and 1 deletions
|
|
@ -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 a new issue