Merge branch 'another_logic_fix_cds_stamp' into add_time_helpers

This commit is contained in:
2023-01-14 17:50:10 +01:00
2 changed files with 12 additions and 1 deletions

View File

@ -311,7 +311,9 @@ impl ConversionFromNow {
));
}
SubmillisPrecision::Picoseconds(_) => {
prec = Some(SubmillisPrecision::Picoseconds((now.subsec_nanos() % 10_u32.pow(6)) * 1000));
prec = Some(SubmillisPrecision::Picoseconds(
(now.subsec_nanos() % 10_u32.pow(6)) * 1000,
));
}
_ => (),
}