Skip to content

Commit 9dd840e

Browse files
committed
Fix warning on formatting NSInteger
1 parent 36babe0 commit 9dd840e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Source/AppAuth/macOS/OIDRedirectHTTPHandler.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ - (void)HTTPConnection:(HTTPConnection *)conn didReceiveRequest:(HTTPServerReque
213213
}
214214

215215
NSAssert([bodyText length] > 0, @"bodyText is empty");
216-
NSAssert(httpResponseCode > 0, @"httpResponseCode is %d, should be greater than 0", httpResponseCode);
216+
NSAssert(httpResponseCode > 0, @"httpResponseCode is %d, should be greater than 0", (long) httpResponseCode);
217217

218218
NSData *data = [bodyText dataUsingEncoding:NSUTF8StringEncoding];
219219

0 commit comments

Comments
 (0)