hduffddybz 10 年之前
父节点
当前提交
6ccfe9f374
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      examples/test/net_test.c

+ 2 - 2
examples/test/net_test.c

@@ -34,7 +34,7 @@ void udpecho_entry(void *parameter)
 		addr = netbuf_fromaddr(buf);
 		port = netbuf_fromport(buf);
 
-    /* send the data to buffer */
+   		 /* send the data to buffer */
 		netconn_connect(conn, addr, port);
 
 		/* reset address, and send to client */
@@ -46,7 +46,7 @@ void udpecho_entry(void *parameter)
 		
 		netconn_send(conn, buf);
 		
-    /* release buffer */
+    	/* release buffer */
 		netbuf_delete(buf);
 	}
 }