Skip to content

Commit

Permalink
hurd: Fix msghdr's msg_iov field type
Browse files Browse the repository at this point in the history
  • Loading branch information
sthibaul committed Oct 17, 2023
1 parent 508e174 commit 76ecf75
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/unix/hurd/mod.rs
Original file line number Diff line number Diff line change
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 76ecf75

Please sign in to comment.