Skip to content

Commit

Permalink
Minor signed/unsigned fix...ZIP_isDirectory() now seems to work.
Browse files Browse the repository at this point in the history
  • Loading branch information
icculus committed Aug 21, 2002
1 parent 1f5b571 commit d40d951
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion archivers/zip.c
Expand Up @@ -1260,7 +1260,7 @@ static PHYSFS_sint64 ZIP_getLastModTime(DirHandle *h,
static int ZIP_isDirectory(DirHandle *h, const char *name, int *fileExists)
{
ZIPinfo *info = (ZIPinfo *) h->opaque;
PHYSFS_uint32 pos;
PHYSFS_sint32 pos;
ZIPentry *entry;

pos = zip_find_start_of_dir(info, name, 1);
Expand Down

0 comments on commit d40d951

Please sign in to comment.