From c13ec867c933f8e808f9ecf867bb9bbf97c533e8 Mon Sep 17 00:00:00 2001 From: goldsimon Date: Tue, 9 Oct 2007 20:00:55 +0000 Subject: [PATCH] Forgot two explicit initializations... --- src/core/netif.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/netif.c b/src/core/netif.c index a31992d2..aae68b45 100644 --- a/src/core/netif.c +++ b/src/core/netif.c @@ -58,8 +58,8 @@ #define NETIF_LINK_CALLBACK(n) { /* NOP */ } #endif /* LWIP_NETIF_LINK_CALLBACK */ -struct netif *netif_list = NULL; -struct netif *netif_default = NULL; +struct netif *netif_list; +struct netif *netif_default; /** * Add a network interface to the list of lwIP netifs.