fix build problem when building with dht logging

This commit is contained in:
Arvid Norberg 2007-11-25 11:14:53 +00:00
parent 769d8aefe2
commit a981943ea2
1 changed files with 1 additions and 1 deletions

View File

@ -322,7 +322,7 @@ unsigned int rpc_manager::new_transaction_id(observer_ptr o)
#ifdef TORRENT_DHT_VERBOSE_LOGGING
TORRENT_LOG(rpc) << "[new_transaction_id] Aborting message with transaction id: "
<< m_next_transaction_id << " sent to " << o->target_addr
<< " at " << o->sent;
<< " " << total_seconds(time_now() - o->sent) << " seconds ago";
#endif
m_transactions[m_next_transaction_id] = 0;
TORRENT_ASSERT(m_oldest_transaction_id == m_next_transaction_id);