From 975e29d76ea17b2b454edc1db92d4a1b5f98b8d4 Mon Sep 17 00:00:00 2001 From: goldsimon Date: Thu, 27 Apr 2017 12:45:33 +0200 Subject: [PATCH] fixed copy&paste error :-) --- src/include/lwip/ip.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/include/lwip/ip.h b/src/include/lwip/ip.h index 08cfb1bc..c9d9acf5 100644 --- a/src/include/lwip/ip.h +++ b/src/include/lwip/ip.h @@ -252,7 +252,7 @@ extern struct ip_globals ip_data; #define ip_output_hinted(p, src, dest, ttl, tos, proto, netif_hint) \ (IP_IS_V6(dest) ? \ ip6_output_hinted(p, ip_2_ip6(src), ip_2_ip6(dest), ttl, tos, proto, netif_hint) : \ - ip4_output_hinted(p, ip_2_ip4(src), ip_2_ip4(dest), ttl, tos, proto, v)) + ip4_output_hinted(p, ip_2_ip4(src), ip_2_ip4(dest), ttl, tos, proto, netif_hint)) /** * @ingroup ip * Get netif for address combination. See \ref ip6_route and \ref ip4_route