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 authored and JohnTitor committed Jun 15, 2024
1 parent 9c1a4c3 commit efc67c9
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 efc67c9

Please sign in to comment.