1
0
Fork 0
mirror of https://github.com/hermitcore/libhermit.git synced 2025-03-09 00:00:03 +01:00

fix compiler warnings

This commit is contained in:
daniel-k 2017-02-03 15:35:49 +01:00
parent f436e6d12c
commit ec1fab0150
2 changed files with 2 additions and 2 deletions

View file

@ -670,7 +670,7 @@ Lgo3:
global is_uhyve
align 64
is_uhyve
is_uhyve:
mov eax, DWORD [uhyve]
ret

View file

@ -678,7 +678,7 @@ err_t mmnif_init(struct netif *netif)
num++;
/* downward functions */
netif->output = mmnif_link_layer;
netif->output = (netif_output_fn) mmnif_link_layer;
/* there is no special link layer just the ip layer */
netif->linkoutput = mmnif_tx;