From c168f9e1df9b7b5e949a026c4ec79eca723c137b Mon Sep 17 00:00:00 2001 From: Arvid Norberg Date: Sun, 26 Feb 2012 01:36:29 +0000 Subject: [PATCH] fixed assert --- src/torrent.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/torrent.cpp b/src/torrent.cpp index c9ddc54b8..c9fc7e21c 100644 --- a/src/torrent.cpp +++ b/src/torrent.cpp @@ -7805,7 +7805,7 @@ namespace libtorrent void torrent::give_connect_points(int points) { TORRENT_ASSERT(m_ses.is_network_thread()); - TORRENT_ASSERT(points <= 100); + TORRENT_ASSERT(points <= 200); TORRENT_ASSERT(points > 0); TORRENT_ASSERT(want_more_peers()); m_deficit_counter += points;