Skip to content

Commit 06bfcee

Browse files
committed
update linux build
1 parent 861c943 commit 06bfcee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

MavLinkCom/src/impl/MavLinkConnectionImpl.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ std::string MavLinkConnectionImpl::acceptTcp(std::shared_ptr<MavLinkConnection>
8282
close();
8383
std::shared_ptr<TcpClientPort> socket = std::make_shared<TcpClientPort>();
8484

85-
port = std::make_shared<Port>(*socket); // this is so that a call to close() can cancel this blocking accept call.
85+
port = std::make_shared<Port>(socket); // this is so that a call to close() can cancel this blocking accept call.
8686
socket->accept(localAddr, listeningPort);
8787

8888
std::string remote = socket->remoteAddress();

0 commit comments

Comments
 (0)