Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions litebox_common_linux/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -771,10 +771,10 @@ pub struct Ucred {
cfg_if::cfg_if! {
if #[cfg(all(target_arch = "x86"))] {
pub type time_t = i32;
pub type suseconds_t = u32;
pub type suseconds_t = i32;
} else if #[cfg(all(target_arch = "x86_64"))] {
pub type time_t = i64;
pub type suseconds_t = u64;
pub type suseconds_t = i64;
} else {
compile_error!("Unsupported architecture");
}
Expand Down