From e03fb869909903c5c7451269b3daa388e1ef67fa Mon Sep 17 00:00:00 2001 From: Ricardo Quesada Date: Fri, 10 Oct 2014 18:28:05 -0700 Subject: [PATCH] one more fix, oops --- cocos/base/ZipUtils.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cocos/base/ZipUtils.cpp b/cocos/base/ZipUtils.cpp index 1c27143521..04c7f1a02f 100644 --- a/cocos/base/ZipUtils.cpp +++ b/cocos/base/ZipUtils.cpp @@ -648,7 +648,7 @@ std::string ZipFile::getNextFilename() if (unzGoToNextFile(_data->zipFile) != UNZ_OK) return emptyFilename; std::string path; unz_file_info info; - getCurrentFileInfo(&path, (cocos2d::unz_file_info*)&info); + getCurrentFileInfo(&path, &info); return path; }