mattconnolly / ZipArchive

zip archive processing for Cocoa - iPhone and OS X
http://code.google.com/p/ziparchive/
MIT License
841 stars 260 forks source link

Update ZipArchive.m #13

Closed habzy closed 11 years ago

habzy commented 11 years ago

fix a mistake. "(ret==UNZ_OK && UNZ_OK !=UNZ_END_OF_LIST_OF_FILE)" to "(ret==UNZ_OK && ret!=UNZ_END_OF_LIST_OF_FILE)"

mattconnolly commented 11 years ago

Thanks!