| author | |
| committer | |
| log | 627f03af9d90e0ac33834b4dd04a3a0adc9bbcef |
| tree | 5f6e26403a82017a09907a0e3c552cd3e704bdae |
| parent | 0978566db8b7ed2b730cf01a7d359e9b52ec66ec |
2 files changed, 2 insertions(+), 2 deletions(-)
lib/std/c/illumos.zig+1-1| ... | @@ -297,7 +297,7 @@ pub const lifreq = extern struct { | ... | @@ -297,7 +297,7 @@ pub const lifreq = extern struct { |
| 297 | /// Maximum transmission unit | 297 | /// Maximum transmission unit |
| 298 | mtu: u32, | 298 | mtu: u32, |
| 299 | // Technically [2]i32 | 299 | // Technically [2]i32 |
| 300 | muxid: packed struct { ip: i32, arp: i32 }, | 300 | muxid: packed struct(u64) { ip: i32, arp: i32 }, |
| 301 | /// Neighbor reachability determination entries | 301 | /// Neighbor reachability determination entries |
| 302 | nd_req: lif_nd_req, | 302 | nd_req: lif_nd_req, |
| 303 | /// Link info | 303 | /// Link info |
lib/std/os/linux.zig+1-1| ... | @@ -9515,7 +9515,7 @@ pub const perf_event_attr = extern struct { | ... | @@ -9515,7 +9515,7 @@ pub const perf_event_attr = extern struct { |
| 9515 | sample_type: u64 = 0, | 9515 | sample_type: u64 = 0, |
| 9516 | read_format: u64 = 0, | 9516 | read_format: u64 = 0, |
| 9517 | 9517 | ||
| 9518 | flags: packed struct { | 9518 | flags: packed struct(u64) { |
| 9519 | /// off by default | 9519 | /// off by default |
| 9520 | disabled: bool = false, | 9520 | disabled: bool = false, |
| 9521 | /// children inherit it | 9521 | /// children inherit it |