fix warning in session_impl

This commit is contained in:
arvidn 2019-02-11 17:36:49 +01:00 committed by Arvid Norberg
parent d33b0506a0
commit a2196a4194
1 changed files with 2 additions and 3 deletions

View File

@ -5769,9 +5769,8 @@ namespace aux {
} }
#ifndef TORRENT_DISABLE_LOGGING #ifndef TORRENT_DISABLE_LOGGING
session_log("starting DHT, running: %s, router lookups: %d, aborting: %s" session_log("starting DHT, running: %s, router lookups: %d"
, m_dht ? "true" : "false", m_outstanding_router_lookups , m_dht ? "true" : "false", m_outstanding_router_lookups);
, m_abort ? "true" : "false");
#endif #endif
// TODO: refactor, move the storage to dht_tracker // TODO: refactor, move the storage to dht_tracker