From b1d32ec74226b2cbb2b14dc8441c05d4da6550bc Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Mon, 16 Jul 2001 10:31:28 +0000 Subject: [PATCH] Updated archiver info to format I think is best for text. --- archivers/grp.c | 4 ++-- archivers/zip.c | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/archivers/grp.c b/archivers/grp.c index 6ec4272..276e6dd 100644 --- a/archivers/grp.c +++ b/archivers/grp.c @@ -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 ... */ diff --git a/archivers/zip.c b/archivers/zip.c index 9067fda..20c7a11 100644 --- a/archivers/zip.c +++ b/archivers/zip.c @@ -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 */ @@ -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 */ @@ -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 ... */