Skip to content

Commit d468a9a

Browse files
committed
---
yaml --- r: 272777 b: refs/heads/beta c: ee62aab h: refs/heads/master i: 272775: 75d7160
1 parent d92d633 commit d468a9a

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ refs/tags/0.9: 36870b185fc5f5486636d4515f0e22677493f225
2323
refs/tags/0.10: ac33f2b15782272ae348dbd7b14b8257b2148b5a
2424
refs/tags/0.11.0: e1247cb1d0d681be034adb4b558b5a0c0d5720f9
2525
refs/tags/0.12.0: f0c419429ef30723ceaf6b42f9b5a2aeb5d2e2d1
26-
refs/heads/beta: 631fa2b8c059ecf22b69941d700d9c9fce0ed47f
26+
refs/heads/beta: ee62aab2edc1897d587dc43ff379a69b185e3be7
2727
refs/tags/1.0.0-alpha: e42bd6d93a1d3433c486200587f8f9e12590a4d7
2828
refs/heads/tmp: e06d2ad9fcd5027bcaac5b08fc9aa39a49d0ecd3
2929
refs/tags/1.0.0-alpha.2: 4c705f6bc559886632d3871b04f58aab093bfa2f

branches/beta/src/libstd/sys/common/net.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ use cmp;
1414
use ffi::{CStr, CString};
1515
use fmt;
1616
use io::{self, Error, ErrorKind};
17-
use libc::{c_int, c_char, c_void, c_uint};
17+
use libc::{c_int, c_char, c_void};
1818
use mem;
1919
#[allow(deprecated)]
2020
use net::{SocketAddr, Shutdown, IpAddr, Ipv4Addr, Ipv6Addr};
@@ -107,8 +107,8 @@ fn to_ipv6mr_interface(value: u32) -> c_int {
107107
}
108108

109109
#[cfg(not(target_os = "android"))]
110-
fn to_ipv6mr_interface(value: u32) -> c_uint {
111-
value as c_uint
110+
fn to_ipv6mr_interface(value: u32) -> ::libc::c_uint {
111+
value as ::libc::c_uint
112112
}
113113

114114
////////////////////////////////////////////////////////////////////////////////

0 commit comments

Comments
 (0)