From 9dfa7e43da6bd569328a70aec2cab6b56d6d6baf Mon Sep 17 00:00:00 2001 From: deni2s Date: Thu, 17 Mar 2016 17:38:39 +0200 Subject: [PATCH] Update README.md Suppresses warning about using int type instead of long long for info.size --- README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index b6de2eb..f948442 100644 --- a/README.md +++ b/README.md @@ -179,8 +179,7 @@ OZZipFile *unzipFile= [[OZZipFile alloc] initWithFileName:@"test.zip" NSArray *infos= [unzipFile listFileInZipInfos]; for (OZFileInZipInfo *info in infos) { - NSLog(@"- %@ %@ %d (%d)", info.name, info.date, info.size, - info.level); + NSLog(@"- %@ %@ %llu (%d)", info.name, info.date, info.size, info.level); // Locate the file in the zip [unzipFile locateFileInZip:info.name];