Skip to content

Commit 1ccb76a

Browse files
committed
Fix src/imp/linux_raw/net/read_sockaddr.rs to not depend on c_char signedness.
1 parent 94448a0 commit 1ccb76a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/imp/linux_raw/net/read_sockaddr.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ unsafe fn read_ss_family(storage: *const c::sockaddr) -> u16 {
2828
__bindgen_anon_1:
2929
linux_raw_sys::general::__kernel_sockaddr_storage__bindgen_ty_1__bindgen_ty_1 {
3030
ss_family: 0_u16,
31-
__data: [0_u8; 126],
31+
__data: [0; 126_usize],
3232
},
3333
},
3434
},

0 commit comments

Comments
 (0)