From 48934414b26bf838d9e963c0d540feef21d644a5 Mon Sep 17 00:00:00 2001 From: sg Date: Sat, 17 Jan 2015 14:55:32 +0100 Subject: [PATCH] patch #8479 Fixed a visibility scope that caused a compile error in some configurations (by Constantine ) --- src/include/netif/etharp.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/include/netif/etharp.h b/src/include/netif/etharp.h index ce008e71..75338d1f 100644 --- a/src/include/netif/etharp.h +++ b/src/include/netif/etharp.h @@ -220,10 +220,10 @@ err_t ethernet_input(struct pbuf *p, struct netif *netif); extern const struct eth_addr ethbroadcast, ethzero; -#endif /* LWIP_ARP || LWIP_ETHERNET */ - #ifdef __cplusplus } #endif +#endif /* LWIP_ARP || LWIP_ETHERNET */ + #endif /* LWIP_HDR_NETIF_ARP_H */