File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -64,7 +64,7 @@ SockServ::~SockServ() {
64
64
SockServ* pSockServ = (SockServ*)data;
65
65
try {
66
66
while (1 ) {
67
- ESP_LOGD (LOG_TAG, " Waiting on accept" )
67
+ ESP_LOGD (LOG_TAG, " Waiting on accept" );
68
68
Socket tempSock = pSockServ->m_serverSocket .accept ();
69
69
if (!tempSock.isValid ()) {
70
70
continue ;
@@ -229,7 +229,7 @@ Socket SockServ::waitForData(std::set<Socket>& socketSet) {
229
229
* or can return immediately is there is already a client connection in existence.
230
230
*/
231
231
Socket SockServ::waitForNewClient () {
232
- ESP_LOGD (LOG_TAG, " >> waitForNewClient" )
232
+ ESP_LOGD (LOG_TAG, " >> waitForNewClient" );
233
233
m_clientSemaphore.wait (" waitForNewClient" ); // Unlocked in acceptTask.
234
234
m_clientSemaphore.take (" waitForNewClient" );
235
235
Socket tempSocket;
You can’t perform that action at this time.
0 commit comments