From 7702ed66a0ab71592c1560ad49ba5d25f08be712 Mon Sep 17 00:00:00 2001 From: goldsimon Date: Tue, 8 Sep 2015 09:52:22 +0200 Subject: [PATCH] fixed compiler warning (stray 'a ' in code) - why is this a warning only??? --- src/core/netif.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/netif.c b/src/core/netif.c index 08c08648..4b9f00a6 100644 --- a/src/core/netif.c +++ b/src/core/netif.c @@ -592,7 +592,7 @@ void netif_set_down(struct netif *netif) { if (netif->flags & NETIF_FLAG_UP) { netif->flags &= ~NETIF_FLAG_UP; - a MIB2_COPY_SYSUPTIME_TO(&netif->ts); + MIB2_COPY_SYSUPTIME_TO(&netif->ts); #if LWIP_IPV4 && LWIP_ARP if (netif->flags & NETIF_FLAG_ETHARP) {