mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-06 13:54:21 +00:00
fix: incorrect field sizes in std.os.linux.ifmap
This commit is contained in:
parent
6ce3c2423e
commit
aba1dbc954
1 changed files with 2 additions and 2 deletions
|
|
@ -5918,8 +5918,8 @@ pub const SIOCGIFINDEX = 0x8933;
|
|||
pub const IFNAMESIZE = 16;
|
||||
|
||||
pub const ifmap = extern struct {
|
||||
mem_start: u32,
|
||||
mem_end: u32,
|
||||
mem_start: usize,
|
||||
mem_end: usize,
|
||||
base_addr: u16,
|
||||
irq: u8,
|
||||
dma: u8,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue