hduffddybz 10 years ago
parent
commit
6ccfe9f374
1 changed files with 2 additions and 2 deletions
  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);
 		addr = netbuf_fromaddr(buf);
 		port = netbuf_fromport(buf);
 		port = netbuf_fromport(buf);
 
 
-    /* send the data to buffer */
+   		 /* send the data to buffer */
 		netconn_connect(conn, addr, port);
 		netconn_connect(conn, addr, port);
 
 
 		/* reset address, and send to client */
 		/* reset address, and send to client */
@@ -46,7 +46,7 @@ void udpecho_entry(void *parameter)
 		
 		
 		netconn_send(conn, buf);
 		netconn_send(conn, buf);
 		
 		
-    /* release buffer */
+    	/* release buffer */
 		netbuf_delete(buf);
 		netbuf_delete(buf);
 	}
 	}
 }
 }