diff options
Diffstat (limited to 'src/connection.cpp')
-rw-r--r-- | src/connection.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/connection.cpp b/src/connection.cpp index 64ef9a50e..cf5be7ed6 100644 --- a/src/connection.cpp +++ b/src/connection.cpp @@ -1316,7 +1316,7 @@ bool ConnectionSendThread::packetsQueued() { std::list<u16> peerIds = m_connection->getPeerIDs(); - if ((this->m_outgoing_queue.size() > 0) && (peerIds.size() > 0)) + if (!m_outgoing_queue.empty() && !peerIds.empty()) return true; for(std::list<u16>::iterator j = peerIds.begin(); |