Fix mistypo in src/piece_picker.cpp from previous commit.

This commit is contained in:
cg25 2008-06-22 23:13:27 +00:00
parent a0517fc3cb
commit aeb2dd8c71
1 changed files with 1 additions and 1 deletions

View File

@ -1781,7 +1781,7 @@ namespace libtorrent
if (m_piece_map[block.piece_index].downloading == 0)
mark_as_downloading(block, peer, piece_picker::none);
TORRENT_ASSERT(m_piece_map[block.piece_index].downloaing);
TORRENT_ASSERT(m_piece_map[block.piece_index].downloading);
std::vector<downloading_piece>::iterator i
= std::find_if(m_downloads.begin(), m_downloads.end(), has_index(block.piece_index));