Skip to content

Commit

Permalink
fixed typo
Browse files Browse the repository at this point in the history
  • Loading branch information
tonymillion committed Oct 8, 2012
1 parent b54a6cc commit f5fafd1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Reachability.m
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ -(BOOL)isReachableWithFlags:(SCNetworkReachabilityFlags)flags;
static void TMReachabilityCallback(SCNetworkReachabilityRef target, SCNetworkReachabilityFlags flags, void* info)
{
#pragma unused (target)
#if __has_feature(obj_arc)
#if __has_feature(objc_arc)
Reachability *reachability = ((__bridge Reachability*)info);
#else
Reachability *reachability = ((Reachability*)info);
Expand Down Expand Up @@ -216,7 +216,7 @@ -(BOOL)startNotifier
return NO;
}

#if __has_feature(obj_arc)
#if __has_feature(objc_arc)
context.info = (__bridge void *)self;
#else
context.info = (void *)self;
Expand Down

0 comments on commit f5fafd1

Please sign in to comment.