Merge pull request #7883 from juhaylinen/fix-netsocket-warning

netsocket: Fix compiler warning
pull/8224/head
Cruz Monrreal 2018-09-18 11:42:21 -05:00 committed by GitHub
commit c356f1f9d4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -21,8 +21,8 @@ using namespace mbed;
InternetSocket::InternetSocket()
: _stack(0), _socket(0), _timeout(osWaitForever),
_readers(0), _writers(0), _factory_allocated(false),
_pending(0)
_readers(0), _writers(0), _pending(0),
_factory_allocated(false)
{
}