mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-24 01:31:46 +00:00
This was caused by m_epochs storing the timestamps as nanoseconds while the epoch printing code expects microseconds. Adding a duration cast fixes this. Java stores the epoch timestamps in a double as microseconds, so it doesn't exhibit this bug. The comments were updated to make this more obvious. Fixes #2392.