From 149a2c99084edb8ed486e7ac2d188f6e28150466 Mon Sep 17 00:00:00 2001 From: proller Date: Tue, 17 Dec 2013 16:52:51 +0400 Subject: [PATCH] clean --- src/connection.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/connection.cpp b/src/connection.cpp index 1160357472..c86910146f 100644 --- a/src/connection.cpp +++ b/src/connection.cpp @@ -320,7 +320,7 @@ std::list 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; }