Merge pull request #9500 from janjongboom/patch-4

TCPSocket.cpp setting socket should terminate with semicolon
pull/9358/head
Martin Kojtal 2019-01-28 10:21:52 +01:00 committed by GitHub
commit e3cf2e4adc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -25,7 +25,7 @@ TCPSocket::TCPSocket()
TCPSocket::TCPSocket(TCPSocket *parent, nsapi_socket_t socket, SocketAddress address)
{
_socket = socket,
_socket = socket;
_stack = parent->_stack;
_factory_allocated = true;
_remote_peer = address;