remove typo

This commit is contained in:
Stefan Lankes 2011-10-04 11:39:53 -07:00
parent 6205ab74fe
commit 5ab52d077c

View file

@ -226,7 +226,7 @@ static err_t rckemacif_output(struct netif* netif, struct pbuf* p)
/* check for over/underflow */
if (BUILTIN_EXPECT((p->tot_len < 20 /* IP header size */) || (p->tot_len > 1536), 0)) {
LWIP_DEBUGF(NETIF_DEBUG, ("rckemacif_output: illegal packet length %d => drop\n", p->len));
LWIP_DEBUGF(NETIF_DEBUG, ("rckemacif_output: illegal packet length %d => drop\n", p->tot_len));
return ERR_IF;
}