From 3fba38e47bcd25edb4fc2b7466f4af886326fd21 Mon Sep 17 00:00:00 2001 From: Thomas Eichinger Date: Wed, 19 Aug 2015 22:23:06 +0200 Subject: [PATCH] cpu/native: fix wrong type for _sigio_child() --- cpu/native/dev_eth_tap/dev_eth_tap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cpu/native/dev_eth_tap/dev_eth_tap.c b/cpu/native/dev_eth_tap/dev_eth_tap.c index 6e481107e4..2cfbb3f953 100644 --- a/cpu/native/dev_eth_tap/dev_eth_tap.c +++ b/cpu/native/dev_eth_tap/dev_eth_tap.c @@ -304,7 +304,7 @@ static void _cleanup(dev_eth_t *ethdev) } #ifdef __MACH__ -static void _sigio_child(gnrc_tapnet_t *dev) +static void _sigio_child(dev_eth_tap_t *dev) { pid_t parent = _native_pid; if ((_sigio_child_pid = real_fork()) == -1) {