mirror of https://github.com/ARMmbed/mbed-os.git
Merge pull request #7883 from juhaylinen/fix-netsocket-warning
netsocket: Fix compiler warningpull/8224/head
commit
c356f1f9d4
|
|
@ -21,8 +21,8 @@ using namespace mbed;
|
||||||
|
|
||||||
InternetSocket::InternetSocket()
|
InternetSocket::InternetSocket()
|
||||||
: _stack(0), _socket(0), _timeout(osWaitForever),
|
: _stack(0), _socket(0), _timeout(osWaitForever),
|
||||||
_readers(0), _writers(0), _factory_allocated(false),
|
_readers(0), _writers(0), _pending(0),
|
||||||
_pending(0)
|
_factory_allocated(false)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue