Skip to content

Commit

Permalink
fixed compilation bug because of upgraded in core-moos 10.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
pmnewman committed Nov 24, 2013
1 parent 02d003d commit 07a2f19
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Essentials/pMOOSBridge/MOOSUDPLink.cpp
Expand Up @@ -84,7 +84,7 @@ bool CMOOSUDPLink::Post(CMOOSMsg & M,const std::string & sHost, long int nPort)
throw XPCException("serialised packet is too big to send ....ask for an upgrade");
}

int nSent = m_pUDPSocket->iSendMessageTo(P.m_pStream,P.GetStreamLength(),nPort,sHost);
int nSent = m_pUDPSocket->iSendMessageTo(P.Stream(),P.GetStreamLength(),nPort,sHost);


if(nSent!=P.GetStreamLength())
Expand Down

0 comments on commit 07a2f19

Please sign in to comment.