error fix

This commit is contained in:
Elfein Landers 2022-08-06 21:24:40 -07:00
parent d3b8b2e12a
commit 77189e9e3c

View file

@ -25,8 +25,8 @@ impl Kilosecond {
Self(days * 24 * 60 * 60 * 1000)
}
pub fn s(&self) -> u16 {
self.0 % 1000
pub fn s(&self) -> u32 {
(self.0 % 1000)
}
pub fn k(&self) -> u32 {