1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-29 12:07:46 +00:00

Merge pull request #270 from orodley/fix-32-bit-build

Fix build failure for systems with a non-64-bit time_t.
This commit is contained in:
Oly Mi 2014-06-18 19:29:05 +04:00
commit 6039626490

View file

@ -165,7 +165,7 @@ fn get_uptime(boot_time: Option<time_t>) -> i64 {
_ => return match boot_time { _ => return match boot_time {
Some(t) => { Some(t) => {
let now = unsafe { time(null()) }; let now = unsafe { time(null()) };
(now - t) * 100 // Return in ms ((now - t) * 100) as i64 // Return in ms
}, },
_ => -1 _ => -1
} }