Minor typo fix in tcp_out.c

This commit is contained in:
Dirk Ziegelmeier 2017-01-15 16:37:25 +01:00
parent e1598b0b11
commit 0043bf78b6

View File

@ -475,7 +475,7 @@ tcp_write(struct tcp_pcb *pcb, const void *arg, u16_t len, u8_t apiflags)
space -= oversize_used;
}
/* now we are either finished or oversize is zero */
LWIP_ASSERT("inconsistend oversize vs. len", (oversize == 0) || (pos == len));
LWIP_ASSERT("inconsistent oversize vs. len", (oversize == 0) || (pos == len));
#endif /* TCP_OVERSIZE */
/*