From 2a2617bc19306965ed6804c6af73b7c926934b5d Mon Sep 17 00:00:00 2001 From: Simon Goldschmidt Date: Mon, 13 Feb 2012 20:46:40 +0100 Subject: [PATCH] Use C-style comments, not C++ style --- apps/udpecho/udpecho.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/udpecho/udpecho.c b/apps/udpecho/udpecho.c index 446d31d..f2842d7 100644 --- a/apps/udpecho/udpecho.c +++ b/apps/udpecho/udpecho.c @@ -60,7 +60,7 @@ udpecho_thread(void *arg) if (err == ERR_OK) { addr = netbuf_fromaddr(buf); port = netbuf_fromport(buf); - // no need netconn_connect here, since the netbuf contains the address + /* no need netconn_connect here, since the netbuf contains the address */ if(netbuf_copy(buf, buffer, buf->p->tot_len) != buf->p->tot_len) { LWIP_DEBUGF(LWIP_DBG_ON, ("netbuf_copy failed\n")); } else {