fix indent

This commit is contained in:
Marcos Pinto 2007-11-26 04:57:28 +00:00
parent 8f6bb96df0
commit 0d51bb250e
1 changed files with 3 additions and 3 deletions

View File

@ -182,9 +182,9 @@ long get_torrent_index(torrent_handle &handle)
long get_index_from_unique_ID(long unique_ID)
{
try{
for (unsigned long i = 0; i < M_torrents->size(); i++)
if ((*M_torrents)[i].unique_ID == unique_ID)
return i;
for (unsigned long i = 0; i < M_torrents->size(); i++)
if ((*M_torrents)[i].unique_ID == unique_ID)
return i;
}
catch(invalid_handle&)
{