summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--talpid-time/src/unix.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/talpid-time/src/unix.rs b/talpid-time/src/unix.rs
index b9721dd27a..2360de818d 100644
--- a/talpid-time/src/unix.rs
+++ b/talpid-time/src/unix.rs
@@ -1,7 +1,7 @@
-use libc::{clock_gettime, clockid_t, timespec};
+use libc::{c_long, clock_gettime, clockid_t, timespec};
use std::{mem::MaybeUninit, time::Duration};
-const NSEC_PER_SEC: i64 = 1000000000;
+const NSEC_PER_SEC: c_long = 1000000000;
#[cfg(target_os = "macos")]
const CLOCK_ID: clockid_t = libc::CLOCK_MONOTONIC;