Update at_client.c

修复LOG_X修改引起的编译错误
This commit is contained in:
HubretXie
2018-09-12 10:22:31 +08:00
committed by GitHub
parent e045c656f0
commit 8edb978c9a
+1 -1
View File
@@ -748,7 +748,7 @@ static int at_client_para_init(at_client_t client)
client->recv_buffer = (char *) rt_calloc(1, client->recv_bufsz);
if (client->recv_buffer == RT_NULL)
{
LOG_E("AT client initialize failed! No memory for receive buffer.")
LOG_E("AT client initialize failed! No memory for receive buffer.");
result = -RT_ENOMEM;
goto __exit;
}