fixed Linux build

This commit is contained in:
orignal 2014-01-09 17:55:53 -05:00
parent e25c17b0b3
commit fcddf9843d
3 changed files with 4 additions and 4 deletions

View file

@ -124,7 +124,7 @@ namespace stream
void StreamingDestination::HandleNextPacket (const uint8_t * buf, size_t len)
{
uint32_t sendStreamID = *(uint32_t *)(buf);
uint32_t sendStreamID = be32toh (*(uint32_t *)(buf));
auto it = m_Streams.find (sendStreamID);
if (it != m_Streams.end ())
it->second->HandleNextPacket (buf, len);