Skip to content

Commit

Permalink
netdev: don't allocate DEBUG_EXTRA_STACKSIZE twice
Browse files Browse the repository at this point in the history
  • Loading branch information
basilfx committed Nov 12, 2019
1 parent a42bdae commit 229a01b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sys/auto_init/netif/auto_init_netdev_tap.c
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
#define TAP_MAC_PRIO (GNRC_NETIF_PRIO)

static netdev_tap_t netdev_tap[NETDEV_TAP_MAX];
static char _netdev_eth_stack[NETDEV_TAP_MAX][TAP_MAC_STACKSIZE + DEBUG_EXTRA_STACKSIZE];
static char _netdev_eth_stack[NETDEV_TAP_MAX][TAP_MAC_STACKSIZE];

void auto_init_netdev_tap(void)
{
Expand Down

0 comments on commit 229a01b

Please sign in to comment.