Merge pull request #614 from hodgesds/layered-stats-fix

scx_layered: Fix stats formatting
This commit is contained in:
Daniel Hodges 2024-09-05 12:54:56 -04:00 committed by GitHub
commit e6ed9b05ba
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -386,7 +386,7 @@ impl SysStats {
writeln!(
w,
"excl_coll={} excl_preempt={} excl_idle={} excl_wakeup={}",
"excl_coll={:.2} excl_preempt={:.2} excl_idle={:.2} excl_wakeup={:.2}",
self.excl_collision, self.excl_preempt, self.excl_idle, self.excl_wakeup
)?;