Skip to content

Commit

Permalink
style.
Browse files Browse the repository at this point in the history
  • Loading branch information
Howaner committed Oct 21, 2014
1 parent 5d3b6c2 commit 2d63967
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/ChunkSender.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,8 @@ void cChunkSender::RemoveClient(cClientHandle * a_Client)
} // for itr - m_SendChunksLowPriority[]
for (sSendChunkList::iterator itr = m_SendChunksHighPriority.begin(); itr != m_SendChunksHighPriority.end();)
{
if (itr->m_Client == a_Client) {
if (itr->m_Client == a_Client)
{
itr = m_SendChunksHighPriority.erase(itr);
continue;
}
Expand Down

0 comments on commit 2d63967

Please sign in to comment.