소스 검색

Fixed var that should be 64 bits instead of 32 now.

Ryan C. Gordon 13 년 전
부모
커밋
4d9f2534f2
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/archiver_zip.c

+ 1 - 1
src/archiver_zip.c

@@ -1419,7 +1419,7 @@ static PHYSFS_sint64 zip_find_start_of_dir(ZIPinfo *info, const char *path,
 {
 {
     PHYSFS_sint64 lo = 0;
     PHYSFS_sint64 lo = 0;
     PHYSFS_sint64 hi = (PHYSFS_sint64) (info->entryCount - 1);
     PHYSFS_sint64 hi = (PHYSFS_sint64) (info->entryCount - 1);
-    PHYSFS_sint32 middle;
+    PHYSFS_sint64 middle;
     PHYSFS_uint32 dlen = (PHYSFS_uint32) strlen(path);
     PHYSFS_uint32 dlen = (PHYSFS_uint32) strlen(path);
     PHYSFS_sint64 retval = -1;
     PHYSFS_sint64 retval = -1;
     const char *name;
     const char *name;