Fix missing semicolon

This commit is contained in:
Jack Garrard 2022-10-27 04:54:30 -07:00
parent 57333d71e9
commit 627e07cd65
1 changed files with 1 additions and 1 deletions

View File

@ -257,7 +257,7 @@ bool SocketClient::recv() {
char* packetBuf = (char*)mHeap->alloc(fullSize);
if (!packetBuf) {
return true
return true;
}
memcpy(packetBuf, recvBuf, fullSize);