Skip to content
Snippets Groups Projects
Commit e7f62bc7 authored by gnzlbg's avatar gnzlbg
Browse files

Fix utmpx.ut_session type on sparc64

parent d8081237
No related branches found
No related tags found
No related merge requests found
...@@ -766,7 +766,7 @@ pub const NFT_MSG_NEWOBJ: ::c_int = 18; ...@@ -766,7 +766,7 @@ pub const NFT_MSG_NEWOBJ: ::c_int = 18;
pub const NFT_MSG_GETOBJ: ::c_int = 19; pub const NFT_MSG_GETOBJ: ::c_int = 19;
pub const NFT_MSG_DELOBJ: ::c_int = 20; pub const NFT_MSG_DELOBJ: ::c_int = 20;
pub const NFT_MSG_GETOBJ_RESET: ::c_int = 21; pub const NFT_MSG_GETOBJ_RESET: ::c_int = 21;
pub const NFT_MSG_MAX: ::c_int = 22; pub const NFT_MSG_MAX: ::c_int = 25;
pub const NFT_SET_ANONYMOUS: ::c_int = 0x1; pub const NFT_SET_ANONYMOUS: ::c_int = 0x1;
pub const NFT_SET_CONSTANT: ::c_int = 0x2; pub const NFT_SET_CONSTANT: ::c_int = 0x2;
......
...@@ -225,7 +225,6 @@ s_no_extra_traits! { ...@@ -225,7 +225,6 @@ s_no_extra_traits! {
pub ut_exit: __exit_status, pub ut_exit: __exit_status,
#[cfg(any(target_arch = "aarch64", #[cfg(any(target_arch = "aarch64",
target_arch = "sparc64",
all(target_pointer_width = "32", all(target_pointer_width = "32",
not(target_arch = "x86_64"))))] not(target_arch = "x86_64"))))]
pub ut_session: ::c_long, pub ut_session: ::c_long,
...@@ -236,7 +235,6 @@ s_no_extra_traits! { ...@@ -236,7 +235,6 @@ s_no_extra_traits! {
pub ut_tv: ::timeval, pub ut_tv: ::timeval,
#[cfg(not(any(target_arch = "aarch64", #[cfg(not(any(target_arch = "aarch64",
target_arch = "sparc64",
all(target_pointer_width = "32", all(target_pointer_width = "32",
not(target_arch = "x86_64")))))] not(target_arch = "x86_64")))))]
pub ut_session: ::int32_t, pub ut_session: ::int32_t,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment