aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar thomasvl@gmail.com <thomasvl@gmail.com@7dc7ac4e-7543-0410-b95c-c1676fc8e2a3>2008-12-12 15:19:35 +0000
committerGravatar thomasvl@gmail.com <thomasvl@gmail.com@7dc7ac4e-7543-0410-b95c-c1676fc8e2a3>2008-12-12 15:19:35 +0000
commit1c129cbe26b539a4d7e0e47d90e84abcc71067bf (patch)
tree5527327cbf4e81eaedc485b37a6acf25007df919
parent6fdb9dfef2c10696fc38a3ad860e014782b7d698 (diff)
Fixing the use of the wrong var w/ the failure selector.
-rw-r--r--Foundation/GTMHTTPFetcher.m2
1 files changed, 1 insertions, 1 deletions
diff --git a/Foundation/GTMHTTPFetcher.m b/Foundation/GTMHTTPFetcher.m
index bc93bab..34821f2 100644
--- a/Foundation/GTMHTTPFetcher.m
+++ b/Foundation/GTMHTTPFetcher.m
@@ -285,7 +285,7 @@ CannotBeginFetch:
[[self retain] autorelease]; // in case the callback releases us
- [delegate performSelector:failedSEL_
+ [delegate performSelector:failedSEL
withObject:self
withObject:error];
}