correct some explain

This commit is contained in:
SummerGift 2017-08-07 11:36:22 +08:00
parent 8034add04a
commit f9ec093f51
1 changed files with 2 additions and 2 deletions

View File

@ -19,9 +19,9 @@ void tcp_senddata(const char* url, int port, int length)
return; return;
} }
/* 神奇内存 */ /* 申请内存 */
buffer_ptr = rt_malloc(length); buffer_ptr = rt_malloc(length);
/* 构造发数据 */ /* 构造发数据 */
for (index = 0; index < length; index ++) for (index = 0; index < length; index ++)
buffer_ptr[index] = index & 0xff; buffer_ptr[index] = index & 0xff;