From c730e45f0cad153e0a7a97f33c18aea51f0cc49a Mon Sep 17 00:00:00 2001 From: Axel Lin Date: Fri, 20 Nov 2015 09:30:20 +0800 Subject: [PATCH] Trivial comment fix about calling tcp_slowtmr Trivial typo fix. Signed-off-by: Axel Lin --- src/core/tcp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/tcp.c b/src/core/tcp.c index d025d441..131392c2 100644 --- a/src/core/tcp.c +++ b/src/core/tcp.c @@ -141,7 +141,7 @@ tcp_tmr(void) tcp_fasttmr(); if (++tcp_timer & 1) { - /* Call tcp_tmr() every 500 ms, i.e., every other timer + /* Call tcp_slowtmr() every 500 ms, i.e., every other timer tcp_tmr() is called. */ tcp_slowtmr(); }