error fix

master
Elfein Landers 2022-08-06 21:24:40 -07:00
parent 90aed0cdad
commit cb1bf8ed5c
1 changed files with 2 additions and 2 deletions

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 {