diff options
author | Hoa V. DINH <dinh.viet.hoa@gmail.com> | 2014-10-24 07:59:02 -0700 |
---|---|---|
committer | Hoa V. DINH <dinh.viet.hoa@gmail.com> | 2014-10-24 07:59:02 -0700 |
commit | d0b53a64bdbeaa71d80210640534abea1a85f8d2 (patch) | |
tree | c28aec3ffde482ded45eb50ec89d33d7b8fa2587 /example/mac | |
parent | 2edc88f7cbd395d450cdee076afd698bed9cb25a (diff) |
Fixed build (#931), #924 broke it
Diffstat (limited to 'example/mac')
-rw-r--r-- | example/mac/macExample/macExample/AppDelegate.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/example/mac/macExample/macExample/AppDelegate.m b/example/mac/macExample/macExample/AppDelegate.m index b5f07f85..05f7748a 100644 --- a/example/mac/macExample/macExample/AppDelegate.m +++ b/example/mac/macExample/macExample/AppDelegate.m @@ -146,7 +146,7 @@ finishedRefreshWithFetcher:(GTMHTTPFetcher *)fetcher self.checkOp = [self.session checkAccountOperation]; self.session.connectionLogger = ^(void * connectionID, MCOConnectionLogType type, NSData * data) { if (type != MCOConnectionLogTypeSentPrivate) { - NSLog(@"event logged:%p %i withData: %@", connectionID, type, [[[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding] autorelease]); + NSLog(@"event logged:%p %i withData: %@", connectionID, (int) type, [[[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding] autorelease]); } }; |