Browse Source

Update at_client.c

修复LOG_X修改引起的编译错误
HubretXie 6 years ago
parent
commit
8edb978c9a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      components/net/at/src/at_client.c

+ 1 - 1
components/net/at/src/at_client.c

@@ -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;
     }