Merge "Don't confuse stat and stat64."

This commit is contained in:
Elliott Hughes
2014-01-18 02:32:39 +00:00
committed by Gerrit Code Review

View File

@@ -202,7 +202,7 @@ copyFileIfChanged(JNIEnv *env, void* arg, ZipFileRO* zipFile, ZipEntryRO zipEntr
}
// Only copy out the native file if it's different.
struct stat st;
struct stat64 st;
if (!isFileDifferent(localFileName, uncompLen, modTime, crc, &st)) {
return INSTALL_SUCCEEDED;
}