Fix small bug in netconsole

Changed member params but forgot to change thread invocation params
This commit is contained in:
Amos 2022-02-06 17:07:27 +01:00
parent d555c39434
commit bba0120e88

View File

@ -71,7 +71,7 @@ bool CNetCon::Init(void)
return false;
}
std::thread tRecv(&CNetCon::Recv, this, this->pSocket);
std::thread tRecv(&CNetCon::Recv, this);
tRecv.detach();
return true;