Skip to content

Commit

Permalink
Change ifa_flags type to u64 for Solaris/illumos
Browse files Browse the repository at this point in the history
  • Loading branch information
mtelka committed May 29, 2024
1 parent acc7bb1 commit 04c5b35
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/unix/solarish/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ s! {
pub struct ifaddrs {
pub ifa_next: *mut ifaddrs,
pub ifa_name: *mut ::c_char,
pub ifa_flags: ::c_ulong,
pub ifa_flags: u64,
pub ifa_addr: *mut ::sockaddr,
pub ifa_netmask: *mut ::sockaddr,
pub ifa_dstaddr: *mut ::sockaddr,
Expand Down

0 comments on commit 04c5b35

Please sign in to comment.