minor fix in assertion text

This commit is contained in:
goldsimon 2007-06-14 07:21:55 +00:00
parent 15e8208457
commit c0925d2d04

View File

@ -114,7 +114,7 @@ icmp_input(struct pbuf *p, struct netif *inp)
} }
/* copy the whole packet including ip header */ /* copy the whole packet including ip header */
if (pbuf_copy(r, p) != ERR_OK) { if (pbuf_copy(r, p) != ERR_OK) {
LWIP_ASSERT("cmp_input: copying to new pbuf failed\n", 0); LWIP_ASSERT("icmp_input: copying to new pbuf failed\n", 0);
goto memerr; goto memerr;
} }
iphdr = r->payload; iphdr = r->payload;