Skip to content

Commit df3f7c1

Browse files
committed
Auto merge of rust-lang#3389 - Vtewari2311:libc-hurd-latest, r=JohnTitor
hurd: Fix msghdr's msg_iov field type
2 parents 508e174 + 76ecf75 commit df3f7c1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/unix/hurd/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -315,7 +315,7 @@ s! {
315315
pub struct msghdr {
316316
pub msg_name: *mut ::c_void,
317317
pub msg_namelen: socklen_t,
318-
pub msg_iov: *mut iovec,
318+
pub msg_iov: *mut ::iovec,
319319
pub msg_iovlen: ::c_int,
320320
pub msg_control: *mut ::c_void,
321321
pub msg_controllen: socklen_t,

0 commit comments

Comments
 (0)