Fixed typo in debug formatting in ip6.c

This commit is contained in:
"Grant Erickson" 2012-12-14 16:08:24 -07:00 committed by Ivan Delamer
parent a4a41b9023
commit 4fe648415f

View File

@ -357,7 +357,7 @@ ip6_input(struct pbuf *p, struct netif *inp)
/* identify the IP header */ /* identify the IP header */
ip6hdr = (struct ip6_hdr *)p->payload; ip6hdr = (struct ip6_hdr *)p->payload;
if (IP6H_V(ip6hdr) != 6) { if (IP6H_V(ip6hdr) != 6) {
LWIP_DEBUGF(IP6_DEBUG | LWIP_DBG_LEVEL_WARNING, ("IPv6 packet dropped due to bad version number %"U16_F"\n", LWIP_DEBUGF(IP6_DEBUG | LWIP_DBG_LEVEL_WARNING, ("IPv6 packet dropped due to bad version number %"U32_F"\n",
IP6H_V(ip6hdr))); IP6H_V(ip6hdr)));
pbuf_free(p); pbuf_free(p);
IP6_STATS_INC(ip6.err); IP6_STATS_INC(ip6.err);