From a2196a4194d1fee93d9317b38625a25240b100ee Mon Sep 17 00:00:00 2001 From: arvidn Date: Mon, 11 Feb 2019 17:36:49 +0100 Subject: [PATCH] fix warning in session_impl --- src/session_impl.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/session_impl.cpp b/src/session_impl.cpp index a9a33bc41..b4d41ed7f 100644 --- a/src/session_impl.cpp +++ b/src/session_impl.cpp @@ -5769,9 +5769,8 @@ namespace aux { } #ifndef TORRENT_DISABLE_LOGGING - session_log("starting DHT, running: %s, router lookups: %d, aborting: %s" - , m_dht ? "true" : "false", m_outstanding_router_lookups - , m_abort ? "true" : "false"); + session_log("starting DHT, running: %s, router lookups: %d" + , m_dht ? "true" : "false", m_outstanding_router_lookups); #endif // TODO: refactor, move the storage to dht_tracker