From 3553efb75e1a65b6c5a4b1277582750ead550093 Mon Sep 17 00:00:00 2001 From: goldsimon Date: Tue, 28 Jul 2009 17:02:48 +0000 Subject: [PATCH] Added newline to TCP header flags debug print --- src/core/tcp.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/core/tcp.c b/src/core/tcp.c index ee841e00..bd165456 100644 --- a/src/core/tcp.c +++ b/src/core/tcp.c @@ -1399,6 +1399,7 @@ tcp_debug_print_flags(u8_t flags) if (flags & TCP_CWR) { LWIP_DEBUGF(TCP_DEBUG, ("CWR ")); } + LWIP_DEBUGF(TCP_DEBUG, ("\n")); } /**