Tests were trying to cast unsigned long long to NSInt and causing tests to fail reporting progress

This commit is contained in:
Joshua Hudson
2016-01-27 09:00:58 -08:00
parent fe1d90c173
commit e6fb3f79fd
2 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -128,7 +128,7 @@
[delegate zipArchiveWillUnzipArchiveAtPath:path zipInfo:globalInfo];
}
if ([delegate respondsToSelector:@selector(zipArchiveProgressEvent:total:)]) {
[delegate zipArchiveProgressEvent:(NSInteger)currentPosition total:(NSInteger)fileSize];
[delegate zipArchiveProgressEvent:currentPosition total:fileSize];
}
NSInteger currentFileNumber = 0;