Skip to content

Commit

Permalink
fix(abi): sockaddr_in.sin_port
Browse files Browse the repository at this point in the history
Signed-off-by: Martin Kröning <[email protected]>
  • Loading branch information
mkroening committed May 7, 2024
1 parent d2e5c03 commit bf10a26
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hermit-abi/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ pub struct sockaddr {
pub struct sockaddr_in {
pub sin_len: u8,
pub sin_family: sa_family_t,
pub sin_port: u16,
pub sin_port: in_port_t,
pub sin_addr: in_addr,
pub sin_zero: [u8; 8],
}
Expand Down

0 comments on commit bf10a26

Please sign in to comment.