Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fixed var that should be 64 bits instead of 32 now.
  • Loading branch information
icculus committed Jun 1, 2012
1 parent 2b39e47 commit 4d9f253
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/archiver_zip.c
Expand Up @@ -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;
Expand Down

0 comments on commit 4d9f253

Please sign in to comment.