From ec30fe5f9b1dd687d55abbc1ae7669f8894bbc06 Mon Sep 17 00:00:00 2001 From: Arvid Norberg Date: Thu, 16 Jun 2011 00:28:36 +0000 Subject: [PATCH] fix build issue with statistics enabled --- src/session_impl.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/session_impl.cpp b/src/session_impl.cpp index d7496c5eb..c9afba59f 100644 --- a/src/session_impl.cpp +++ b/src/session_impl.cpp @@ -3164,7 +3164,7 @@ namespace aux { if (p->is_interesting()) ++peers_down_interesting; if (p->send_buffer_size() > 100 || !p->upload_queue().empty()) ++peers_up_requests; - if (p->endgame()) ++num_endgame_peers; + if (p->endgame()) ++num_end_game_peers; int dl_bucket = 0; int dl_rate = p->statistics().download_payload_rate();