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

Commit

Permalink
Fixing implicit conversion warning
Browse files Browse the repository at this point in the history
  • Loading branch information
mattt committed Jul 18, 2014
1 parent 576eb49 commit 5142562
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion AFNetworkActivityLogger/AFNetworkActivityLogger.m
Expand Up @@ -131,7 +131,7 @@ - (void)networkRequestDidFinish:(NSNotification *)notification {
NSUInteger responseStatusCode = 0;
NSDictionary *responseHeaderFields = nil;
if ([response isKindOfClass:[NSHTTPURLResponse class]]) {
responseStatusCode = [(NSHTTPURLResponse *)response statusCode];
responseStatusCode = (NSUInteger)[(NSHTTPURLResponse *)response statusCode];
responseHeaderFields = [(NSHTTPURLResponse *)response allHeaderFields];
}

Expand Down

0 comments on commit 5142562

Please sign in to comment.