Skip to content

Commit

Permalink
cast url result to void to fix compiler warning
Browse files Browse the repository at this point in the history
  • Loading branch information
phinze committed Jan 14, 2012
1 parent 98eaceb commit 51b24d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Woodhouse/BuildStatusChecker.m
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ - (void) updateBuilds:(NSTimer*)theTimer {


NSURLRequest *request = [NSURLRequest requestWithURL:[NSURL URLWithString:url]];
[[NSURLConnection alloc] initWithRequest:request delegate:self];
(void) [[NSURLConnection alloc] initWithRequest:request delegate:self];
}

- (void) scheduleNextCheck {
Expand Down

0 comments on commit 51b24d2

Please sign in to comment.