fix: socket invalid type

This commit is contained in:
2021-09-02 19:53:30 +02:00
parent edc76b7b17
commit 4fc81061af
2 changed files with 3 additions and 3 deletions

View File

@@ -16,7 +16,7 @@ Socket::Socket(Type type)
: m_Blocking(false),
m_Type(type),
m_Status(Disconnected),
m_Handle(INVALID_SOCKET)
m_Handle((SocketHandle) INVALID_SOCKET)
{
}