remove residual from peer speed affinity

This commit is contained in:
Arvid Norberg 2015-02-10 04:37:10 +00:00
parent d2546cc592
commit 9ff3030c7d
1 changed files with 2 additions and 2 deletions

View File

@ -275,8 +275,8 @@ namespace libtorrent {
std::string block_downloading_alert::message() const
{
char ret[200];
snprintf(ret, sizeof(ret), "%s requested block (piece: %u block: %u) %s"
, torrent_alert::message().c_str(), piece_index, block_index, peer_speedmsg);
snprintf(ret, sizeof(ret), "%s requested block (piece: %u block: %u)"
, torrent_alert::message().c_str(), piece_index, block_index);
return ret;
}