Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix stuffing unsigned int into int variable, causing build warning
  • Loading branch information
Ryan Maxwell committed Jan 29, 2013
1 parent d593a04 commit aba5567
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SUStandardVersionComparator.m
Expand Up @@ -84,7 +84,7 @@ - (NSComparisonResult)compareVersion:(NSString *)versionA toVersion:(NSString *)
NSArray *partsB = [self splitVersionString:versionB];

NSString *partA, *partB;
int i, n;
NSUInteger i, n;
long long valueA, valueB;
SUCharacterType typeA, typeB;

Expand Down

0 comments on commit aba5567

Please sign in to comment.