Skip to content

Commit

Permalink
Polishing for 1.5 version
Browse files Browse the repository at this point in the history
  • Loading branch information
thibaultcha committed Mar 8, 2014
1 parent 28522aa commit c173acc
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
Binary file modified TCBlobDownload/Docs/TCBlobDownloadDocset.zip
Binary file not shown.
2 changes: 1 addition & 1 deletion TCBlobDownload/TCBlobDownload/TCBlobDownloader.m
Original file line number Diff line number Diff line change
Expand Up @@ -355,7 +355,7 @@ - (NSString *)pathToFile

- (NSInteger)remainingTime
{
return self.speedRate > 0 ? (self.expectedDataLength - self.receivedDataLength) / self.speedRate : -1;
return self.speedRate > 0 ? ((NSInteger)(self.expectedDataLength - self.receivedDataLength) / self.speedRate) : -1;
}

@end

0 comments on commit c173acc

Please sign in to comment.