Skip to content

Commit

Permalink
clean
Browse files Browse the repository at this point in the history
  • Loading branch information
proller committed Dec 17, 2013
1 parent 664e681 commit 149a2c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/connection.cpp
Expand Up @@ -320,7 +320,7 @@ std::list<BufferedPacket> ReliablePacketBuffer::getTimedOuts(float timeout)
i != m_list.end(); ++i)
{
if(i->time >= timeout)
timed_outs.push_back(&(*i));
timed_outs.push_back(*i);
}
return timed_outs;
}
Expand Down

0 comments on commit 149a2c9

Please sign in to comment.