You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nuttx.apache.org by gn...@apache.org on 2020/05/15 13:27:53 UTC

[incubator-nuttx] 02/02: net/udp: fix nxstyle warning

This is an automated email from the ASF dual-hosted git repository.

gnutt pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git

commit 87af256ad6309a42d5b32c7f2f0b3af8ae53ed0a
Author: chao.an <an...@xiaomi.com>
AuthorDate: Fri May 15 16:02:43 2020 +0800

    net/udp: fix nxstyle warning
    
    Signed-off-by: chao.an <an...@xiaomi.com>
---
 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 8d12298..7a784ab 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)
         {