fix non-logging build of dht test

This commit is contained in:
Arvid Norberg 2013-01-19 07:01:03 +00:00
parent 8f682d2ff7
commit 002d69a9fc
1 changed files with 4 additions and 0 deletions

View File

@ -620,7 +620,9 @@ int test_main()
}
TEST_EQUAL(tbl.num_active_buckets(), 6);
#if defined TORRENT_DHT_VERBOSE_LOGGING || defined TORRENT_DEBUG
tbl.print_state(std::cerr);
#endif
}
{
@ -634,7 +636,9 @@ int test_main()
}
TEST_EQUAL(tbl.num_active_buckets(), 6);
#if defined TORRENT_DHT_VERBOSE_LOGGING || defined TORRENT_DEBUG
tbl.print_state(std::cerr);
#endif
}
return 0;