Skip to content

Commit 105d894

Browse files
authored
Update tcpclient.c
接收->发送
1 parent 24ee160 commit 105d894

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/network/tcpclient.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ static void tcpclient(void *arg)
129129
ret = send(sock, send_data, rt_strlen(send_data), 0);
130130
if (ret < 0)
131131
{
132-
/* 接收失败,关闭这个连接 */
132+
/* 发送失败,关闭这个连接 */
133133
LOG_I("send error, close the socket.");
134134
goto __exit;
135135
}

0 commit comments

Comments
 (0)