Skip to content

Commit

Permalink
Fixed a few local-vs-ivar variable ambiguities.
Browse files Browse the repository at this point in the history
  • Loading branch information
andymatuschak committed Jan 11, 2010
1 parent 2e3ed79 commit a5245ac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions SUAppcast.m
Expand Up @@ -176,7 +176,7 @@ - (void)downloadDidFinish:(NSURLDownload *)aDownload
}
}

- (void)download:(NSURLDownload *)download didFailWithError:(NSError *)error
- (void)download:(NSURLDownload *)aDownload didFailWithError:(NSError *)error
{
if (downloadFilename)
{
Expand All @@ -192,7 +192,7 @@ - (void)download:(NSURLDownload *)download didFailWithError:(NSError *)error
[self reportError:error];
}

- (NSURLRequest *)download:(NSURLDownload *)download willSendRequest:(NSURLRequest *)request redirectResponse:(NSURLResponse *)redirectResponse
- (NSURLRequest *)download:(NSURLDownload *)aDownload willSendRequest:(NSURLRequest *)request redirectResponse:(NSURLResponse *)redirectResponse
{
return request;
}
Expand Down

0 comments on commit a5245ac

Please sign in to comment.