From 87af256ad6309a42d5b32c7f2f0b3af8ae53ed0a Mon Sep 17 00:00:00 2001 From: "chao.an" Date: Fri, 15 May 2020 16:02:43 +0800 Subject: [PATCH] net/udp: fix nxstyle warning Signed-off-by: chao.an --- net/udp/udp_conn.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/net/udp/udp_conn.c b/net/udp/udp_conn.c index 8d12298a28..7a784ab900 100644 --- a/net/udp/udp_conn.c +++ b/net/udp/udp_conn.c @@ -778,7 +778,9 @@ int udp_bind(FAR struct udp_conn_s *conn, FAR const struct sockaddr *addr) net_lock(); - /* Is any other UDP connection already bound to this address and port? */ + /* Is any other UDP connection already bound to this address + * and port ? + */ if (udp_find_conn(conn->domain, &conn->u, portno) == NULL) {