We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
https://travis-ci.org/rust-lang-nursery/rustup.rs/jobs/261063687#L1537
error[E0308]: mismatched types --> target/cargo-home/registry/src/github.com-1ecc6299db9ec823/net2-0.2.30/src/socket.rs:40:51 | 40 | ::cvt(c::bind(self.inner.raw(), addr, len as len_t)).map(|_| ()) | ^^^^^^^^^^^^ expected i32, found u32
I assume the fix is just to
-#[cfg(all(target_arch = "aarch64",target_os = "android"))] +#[cfg(all(any(target_arch = "aarch64", target_arch = "x86_64"),target_os = "android"))] use libc::c_int as len_t;
I'll see if that works locally.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
https://travis-ci.org/rust-lang-nursery/rustup.rs/jobs/261063687#L1537
I assume the fix is just to
I'll see if that works locally.
The text was updated successfully, but these errors were encountered: