From bcdffce6ce09b1bfe7fee3e4c72d554593eaf454 Mon Sep 17 00:00:00 2001 From: goldsimon Date: Tue, 19 May 2009 05:40:30 +0000 Subject: [PATCH] Corrected function definition of ip_current_* (void was missing) --- src/include/ipv4/lwip/ip.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/include/ipv4/lwip/ip.h b/src/include/ipv4/lwip/ip.h index de7191d3..14eba3ca 100644 --- a/src/include/ipv4/lwip/ip.h +++ b/src/include/ipv4/lwip/ip.h @@ -170,8 +170,8 @@ err_t ip_output_if_opt(struct pbuf *p, struct ip_addr *src, struct ip_addr *dest u8_t ttl, u8_t tos, u8_t proto, struct netif *netif, void *ip_options, u16_t optlen); #endif /* IP_OPTIONS_SEND */ -struct netif *ip_current_netif(); -const struct ip_hdr *ip_current_header(); +struct netif *ip_current_netif(void); +const struct ip_hdr *ip_current_header(void); #if IP_DEBUG void ip_debug_print(struct pbuf *p); #else