Skip to content

Commit

Permalink
Updated archiver info to format I think is best for text.
Browse files Browse the repository at this point in the history
  • Loading branch information
icculus committed Jul 16, 2001
1 parent 9b71131 commit b1d32ec
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions archivers/grp.c
Expand Up @@ -380,8 +380,8 @@ const PHYSFS_ArchiveInfo __PHYSFS_ArchiveInfo_GRP =
{
"GRP",
"Build engine Groupfile format",
"Ryan C. Gordon",
"http://www.icculus.org/",
"Ryan C. Gordon (icculus@linuxgames.com)",
"http://www.icculus.org/~icculus/",
};

/* end of grp.c ... */
Expand Down
8 changes: 4 additions & 4 deletions archivers/zip.c
Expand Up @@ -104,7 +104,7 @@ static DirHandle *ZIP_openArchive(const char *name, int forWriting)
{
if (unz)
unzClose(unz);
free(retval);
free(retval);
BAIL_IF_MACRO(1, ERR_UNSUPPORTED_ARCHIVE, NULL);
} /* if */

Expand All @@ -117,7 +117,7 @@ static DirHandle *ZIP_openArchive(const char *name, int forWriting)
} /* if */

((ZIPinfo *) (retval->opaque))->handle = unz;
((ZIPinfo *) (retval->opaque))->totalEntries = global.number_entry;
((ZIPinfo *) (retval->opaque))->totalEntries = global.number_entry;

return(retval);
} /* ZIP_openArchive */
Expand Down Expand Up @@ -243,8 +243,8 @@ const PHYSFS_ArchiveInfo __PHYSFS_ArchiveInfo_ZIP =
{
"ZIP",
"PkZip/WinZip/Info-Zip compatible",
"Ryan C. Gordon",
"http://www.icculus.org/",
"Ryan C. Gordon (icculus@linuxgames.com)",
"http://www.icculus.org/~icculus/",
};

/* end of zip.c ... */
Expand Down

0 comments on commit b1d32ec

Please sign in to comment.