fix warning message

This commit is contained in:
Joshua Hudson
2017-01-23 11:27:32 -08:00
parent c8eee45526
commit 57ea2842ac
@@ -23,7 +23,7 @@
@implementation CancelDelegate
- (void)zipArchiveDidUnzipFileAtIndex:(NSInteger)fileIndex totalFiles:(NSInteger)totalFiles archivePath:(NSString *)archivePath fileInfo:(unz_file_info)fileInfo
{
_numFilesUnzipped = fileIndex + 1;
_numFilesUnzipped = (int)(fileIndex + 1);
}
- (BOOL)zipArchiveShouldUnzipFileAtIndex:(NSInteger)fileIndex totalFiles:(NSInteger)totalFiles archivePath:(NSString *)archivePath fileInfo:(unz_file_info)fileInfo
{