Skip to content

Commit

Permalink
Fix utmpx.ut_session for linux x32
Browse files Browse the repository at this point in the history
  • Loading branch information
malbarbo committed Oct 18, 2017
1 parent bbc2cfa commit c3408c1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/unix/notbsd/linux/other/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ s! {

#[cfg(any(target_arch = "aarch64",
target_arch = "sparc64",
target_pointer_width = "32"))]
all(target_pointer_width = "32", not(target_arch = "x86_64"))))]
pub ut_session: ::c_long,
#[cfg(any(target_arch = "aarch64",
target_arch = "sparc64",
Expand All @@ -53,7 +53,7 @@ s! {

#[cfg(not(any(target_arch = "aarch64",
target_arch = "sparc64",
target_pointer_width = "32")))]
all(target_pointer_width = "32", not(target_arch = "x86_64")))))]
pub ut_session: ::int32_t,
#[cfg(not(any(target_arch = "aarch64",
target_arch = "sparc64",
Expand Down

0 comments on commit c3408c1

Please sign in to comment.