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
commit1e541a5b435e7b48a5117f03814966778a319ac4 (patch)
tree93168e73eef7f4cc11272248051a58088fbe3584
parent7e74457faca96fc69e6c3516079daca4f9799e90 (diff)
downloaddeluge-1e541a5b435e7b48a5117f03814966778a319ac4.tar.gz
deluge-1e541a5b435e7b48a5117f03814966778a319ac4.tar.bz2
deluge-1e541a5b435e7b48a5117f03814966778a319ac4.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&)
{