diff options
Diffstat (limited to 'lwip/port/netif')
-rw-r--r-- | lwip/port/netif/hurdethif.c | 2 | ||||
-rw-r--r-- | lwip/port/netif/hurdtunif.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lwip/port/netif/hurdethif.c b/lwip/port/netif/hurdethif.c index ec899e40..68d7680b 100644 --- a/lwip/port/netif/hurdethif.c +++ b/lwip/port/netif/hurdethif.c @@ -556,7 +556,7 @@ hurdethif_input_thread (void *arg) * This function should be called once. */ error_t -hurdethif_module_init () +hurdethif_module_init (void) { error_t err; etherport_bucket = ports_create_bucket (); diff --git a/lwip/port/netif/hurdtunif.c b/lwip/port/netif/hurdtunif.c index c976703f..da4d5cbe 100644 --- a/lwip/port/netif/hurdtunif.c +++ b/lwip/port/netif/hurdtunif.c @@ -278,7 +278,7 @@ hurdtunif_device_init (struct netif *netif) * This function should be called once. */ error_t -hurdtunif_module_init () +hurdtunif_module_init (void) { error_t err = 0; |