diff options
author | Alex Crichton <alex@alexcrichton.com> | 2015-09-16 17:34:54 -0700 |
---|---|---|
committer | Alex Crichton <alex@alexcrichton.com> | 2015-09-16 17:34:54 -0700 |
commit | 2482400b2701c39194506dc928a29e2e31f55223 (patch) | |
tree | 9a79cdea91899b96e6a86c8f152e0e005e7a92e5 /src/unix/mod.rs | |
parent | d809601a92292a0bb363feafee64c934ec3ecebb (diff) | |
download | rust-libc-2482400b2701c39194506dc928a29e2e31f55223.tar.gz |
Oops, backwards
Diffstat (limited to 'src/unix/mod.rs')
-rw-r--r-- | src/unix/mod.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/unix/mod.rs b/src/unix/mod.rs index 6ec4bf6d9c..a96361a7c0 100644 --- a/src/unix/mod.rs +++ b/src/unix/mod.rs @@ -60,9 +60,9 @@ s! { pub struct ipv6_mreq { pub ipv6mr_multiaddr: in6_addr, #[cfg(target_os = "android")] - pub ipv6mr_interface: c_uint, - #[cfg(not(target_os = "android"))] pub ipv6mr_interface: c_int, + #[cfg(not(target_os = "android"))] + pub ipv6mr_interface: c_uint, } } |