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 {
Some(t) => {
let now = unsafe { time(null()) };
(now - t) * 100 // Return in ms
((now - t) * 100) as i64 // Return in ms
},
_ => -1
}