From 2f02120fee4d709636c6979a70dd2a5c83a3e948 Mon Sep 17 00:00:00 2001 From: Simon Goldschmidt Date: Thu, 20 Feb 2014 15:43:51 +0100 Subject: [PATCH] Fixed typo. --- src/core/tcp_in.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/tcp_in.c b/src/core/tcp_in.c index 9054a757..bf921a84 100644 --- a/src/core/tcp_in.c +++ b/src/core/tcp_in.c @@ -348,7 +348,7 @@ tcp_input(struct pbuf *p, struct netif *inp) u16_t acked; #if LWIP_WND_SCALE /* pcb->acked is u32_t but the sent callback only takes a u16_t, - so we might have to call it multiple timess. */ + so we might have to call it multiple times. */ u32_t pcb_acked = pcb->acked; while(pcb_acked > 0) { acked = (u16_t)LWIP_MIN(pcb_acked, 0xffffu);