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 <[email protected]>
AuthorDate: Fri May 15 16:02:43 2020 +0800

    net/udp: fix nxstyle warning
    
    Signed-off-by: chao.an <[email protected]>
---
 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)
         {

Reply via email to