]> rtime.felk.cvut.cz Git - pes-rpp/rpp-lwip.git/commitdiff
patch #8030: fixed spelling of "received"
authorSimon Goldschmidt <goldsimon@gmx.de>
Wed, 19 Jun 2013 20:23:05 +0000 (22:23 +0200)
committerSimon Goldschmidt <goldsimon@gmx.de>
Wed, 19 Jun 2013 20:23:05 +0000 (22:23 +0200)
src/core/tcp.c

index a0cbb15958c357b3be005269d7805efccc9c8895..8690cd24e9c06eac4cf61dce7d19506210055709 100644 (file)
@@ -667,7 +667,7 @@ tcp_recved(struct tcp_pcb *pcb, u16_t len)
     tcp_output(pcb);
   }
 
-  LWIP_DEBUGF(TCP_DEBUG, ("tcp_recved: recveived %"U16_F" bytes, wnd %"U16_F" (%"U16_F").\n",
+  LWIP_DEBUGF(TCP_DEBUG, ("tcp_recved: received %"U16_F" bytes, wnd %"U16_F" (%"U16_F").\n",
          len, pcb->rcv_wnd, TCP_WND - pcb->rcv_wnd));
 }