Minor typo fix in tcp_out.c

(cherry picked from commit 0043bf78b6)
This commit is contained in:
Dirk Ziegelmeier 2017-01-15 16:37:25 +01:00 committed by goldsimon
parent bbe91e356f
commit fed15778dd

View File

@ -475,7 +475,7 @@ tcp_write(struct tcp_pcb *pcb, const void *arg, u16_t len, u8_t apiflags)
space -= oversize_used; space -= oversize_used;
} }
/* now we are either finished or oversize is zero */ /* 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 */ #endif /* TCP_OVERSIZE */
/* /*