summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarcos Pinto <markybob@dipconsultants.com>2007-11-26 04:57:28 +0000
committerMarcos Pinto <markybob@dipconsultants.com>2007-11-26 04:57:28 +0000
commit0d51bb250ec5d513ddc5275d63c59007d90bf34f (patch)
tree491d254136d9d9c8a682c55b3a32ba102614f276
parent8f6bb96df00496f93d5c74c348861188e9f854b3 (diff)
downloaddeluge-0d51bb250ec5d513ddc5275d63c59007d90bf34f.tar.gz
deluge-0d51bb250ec5d513ddc5275d63c59007d90bf34f.tar.bz2
deluge-0d51bb250ec5d513ddc5275d63c59007d90bf34f.zip
fix indent
-rw-r--r--src/deluge_core.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/deluge_core.cpp b/src/deluge_core.cpp
index 0a350f7c6..2eb9c1d19 100644
--- a/src/deluge_core.cpp
+++ b/src/deluge_core.cpp
@@ -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&)
{