diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2024-11-04 17:53:40 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2024-11-04 17:53:40 +0100 |
commit | 00b1784c3a3d90e1abac40b6c7de3ebbbb05b6a2 (patch) | |
tree | e6adcc83d6ee5911a9afda553057e308e94bff50 /lwip | |
parent | 988731ac08827482d94db846dd89be67d27f34a9 (diff) | |
download | hurd-00b1784c3a3d90e1abac40b6c7de3ebbbb05b6a2.tar.gz hurd-00b1784c3a3d90e1abac40b6c7de3ebbbb05b6a2.tar.bz2 hurd-00b1784c3a3d90e1abac40b6c7de3ebbbb05b6a2.zip |
More device_get_status count fixes
Diffstat (limited to 'lwip')
-rw-r--r-- | lwip/port/netif/hurdethif.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lwip/port/netif/hurdethif.c b/lwip/port/netif/hurdethif.c index 68d7680b..b55c7edb 100644 --- a/lwip/port/netif/hurdethif.c +++ b/lwip/port/netif/hurdethif.c @@ -89,7 +89,7 @@ static error_t hurdethif_device_get_flags (struct netif *netif, uint16_t * flags) { error_t err = 0; - size_t count; + mach_msg_type_number_t count; struct net_status status; hurdethif *ethif; @@ -457,7 +457,7 @@ err_t hurdethif_device_init (struct netif *netif) { error_t err; - size_t count = 2; + mach_msg_type_number_t count = 2; int net_address[2]; device_t ether_port; hurdethif *ethif; |