Skip to content

Commit

Permalink
Merge 287ee7b into cf63599
Browse files Browse the repository at this point in the history
  • Loading branch information
Jean-Charles BERTIN committed Nov 6, 2013
2 parents cf63599 + 287ee7b commit fe50d50
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Core/Source/DTHTMLParser/DTHTMLParser.m
Expand Up @@ -331,7 +331,7 @@ - (void)abortParsing
return _delegate;
}

- (void)setDelegate:(id <DTHTMLParserDelegate>)delegate;
- (void)setDelegate:(id <DTHTMLParserDelegate>)delegate
{
_delegate = delegate;

Expand Down
2 changes: 1 addition & 1 deletion Core/Source/DTVersion.m
Expand Up @@ -60,7 +60,7 @@ + (DTVersion *)versionWithString:(NSString*)versionString
{
return nil;
}
for (int i = 1; i < match.numberOfRanges; i++)
for (NSUInteger i = 1; i < match.numberOfRanges; i++)
{
NSRange range = [match rangeAtIndex:i];
if (range.location == NSNotFound)
Expand Down
2 changes: 1 addition & 1 deletion Core/Source/NSString+DTFormatNumbers.m
Expand Up @@ -15,7 +15,7 @@ + (NSString *)stringByFormattingBytes:(long long)bytes
NSArray *units = [NSArray arrayWithObjects:@"%1.0f Bytes", @"%1.1f KB", @"%1.1f MB", @"%1.1f GB", @"%1.1f TB", nil];

long long value = bytes * 10;
for (int i=0; i<[units count]; i++)
for (NSUInteger i=0; i<[units count]; i++)
{
if (i > 0)
{
Expand Down

0 comments on commit fe50d50

Please sign in to comment.