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

This commit is contained in:
Ryan C. Gordon 2012-06-01 06:07:12 -04:00
parent 2b39e47fda
commit 4d9f2534f2
1 changed files with 1 additions and 1 deletions

View File

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