mirror of
https://github.com/uutils/coreutils.git
synced 2026-06-10 15:48:22 -07: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:
+1
-1
@@ -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
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user