Navigation Menu

Skip to content
This repository has been archived by the owner on Jan 17, 2023. It is now read-only.

Commit

Permalink
Merge pull request #425 from tewha/implicit-sign-conversion
Browse files Browse the repository at this point in the history
Fixed sign conversion warning.
  • Loading branch information
mattt committed Jul 24, 2012
2 parents d509c54 + 1037a80 commit 762a3ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion AFNetworking/AFHTTPRequestOperation.m
Expand Up @@ -188,7 +188,7 @@ - (void)pause {
}

- (BOOL)hasAcceptableStatusCode {
return ![[self class] acceptableStatusCodes] || [[[self class] acceptableStatusCodes] containsIndex:[self.response statusCode]];
return ![[self class] acceptableStatusCodes] || [[[self class] acceptableStatusCodes] containsIndex:(NSUInteger)[self.response statusCode]];
}

- (BOOL)hasAcceptableContentType {
Expand Down

0 comments on commit 762a3ef

Please sign in to comment.