diff --git a/src/integer.rs b/src/integer.rs index fe4fca1..4098e99 100644 --- a/src/integer.rs +++ b/src/integer.rs @@ -49,7 +49,7 @@ impl Time{ impl From for Time{ #[inline] fn from(value:Planar64)->Self{ - Time(((value*Planar64::raw(1_000_000_000))>>32).fix_1().to_raw()) + Time((value*Planar64::raw(1_000_000_000)).fix_1().to_raw()) } } impl From> for Time