mirror of
https://github.com/CraftyBoss/SuperMarioOdysseyOnline.git
synced 2024-12-22 16:30:20 +00:00
Fix missing semicolon
This commit is contained in:
parent
57333d71e9
commit
627e07cd65
1 changed files with 1 additions and 1 deletions
|
@ -257,7 +257,7 @@ bool SocketClient::recv() {
|
|||
|
||||
char* packetBuf = (char*)mHeap->alloc(fullSize);
|
||||
if (!packetBuf) {
|
||||
return true
|
||||
return true;
|
||||
}
|
||||
|
||||
memcpy(packetBuf, recvBuf, fullSize);
|
||||
|
|
Loading…
Reference in a new issue