Skip to content

Commit c356f1f

Browse files
author
Cruz Monrreal
authored
Merge pull request #7883 from juhaylinen/fix-netsocket-warning
netsocket: Fix compiler warning
2 parents 5391a7b + b8b39ac commit c356f1f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

features/netsocket/InternetSocket.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ using namespace mbed;
2121

2222
InternetSocket::InternetSocket()
2323
: _stack(0), _socket(0), _timeout(osWaitForever),
24-
_readers(0), _writers(0), _factory_allocated(false),
25-
_pending(0)
24+
_readers(0), _writers(0), _pending(0),
25+
_factory_allocated(false)
2626
{
2727
}
2828

0 commit comments

Comments
 (0)