Skip to content
This repository was archived by the owner on Mar 21, 2024. It is now read-only.

Commit fe41b16

Browse files
author
Chuck Doucette
committed
Resolved type-cast warning in json-framework and upgraded project files to Xcode 5.1
1 parent 6158d59 commit fe41b16

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Classes/SBJsonStreamParser.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ - (NSString*)tokenName:(sbjson_token_t)token {
119119
}
120120

121121
- (void)maxDepthError {
122-
self.error = [NSString stringWithFormat:@"Input depth exceeds max depth of %u", maxDepth];
122+
self.error = [NSString stringWithFormat:@"Input depth exceeds max depth of %lu", (unsigned long)maxDepth];
123123
self.state = [SBJsonStreamParserStateError sharedInstance];
124124
}
125125

SBJson.xcodeproj/project.pbxproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -499,7 +499,7 @@
499499
BC1232331391D5CC00131607 /* Project object */ = {
500500
isa = PBXProject;
501501
attributes = {
502-
LastUpgradeCheck = 0500;
502+
LastUpgradeCheck = 0510;
503503
ORGANIZATIONNAME = "Stig Brautaset";
504504
};
505505
buildConfigurationList = BC1232361391D5CC00131607 /* Build configuration list for PBXProject "SBJson" */;

0 commit comments

Comments
 (0)