Skip to content

Commit

Permalink
Auto merge of #3389 - Vtewari2311:libc-hurd-latest, r=JohnTitor
Browse files Browse the repository at this point in the history
hurd: Fix msghdr's msg_iov field type
  • Loading branch information
bors committed Oct 17, 2023
2 parents 508e174 + 76ecf75 commit df3f7c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/unix/hurd/mod.rs
Expand Up @@ -315,7 +315,7 @@ s! {
pub struct msghdr {
pub msg_name: *mut ::c_void,
pub msg_namelen: socklen_t,
pub msg_iov: *mut iovec,
pub msg_iov: *mut ::iovec,
pub msg_iovlen: ::c_int,
pub msg_control: *mut ::c_void,
pub msg_controllen: socklen_t,
Expand Down

0 comments on commit df3f7c1

Please sign in to comment.