Skip to content

Commit

Permalink
Rename __PHYSFS_Archiver_SZIP to __PHYSFS_Archiver_7Z.
Browse files Browse the repository at this point in the history
  • Loading branch information
icculus committed Jul 22, 2017
1 parent 1fa4be6 commit 6d91dde
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/physfs.c
Expand Up @@ -1131,7 +1131,7 @@ static int initStaticArchivers(void)
REGISTER_STATIC_ARCHIVER(ZIP);
#endif
#if PHYSFS_SUPPORTS_7Z
REGISTER_STATIC_ARCHIVER(SZIP);
REGISTER_STATIC_ARCHIVER(7Z);
#endif
#if PHYSFS_SUPPORTS_GRP
REGISTER_STATIC_ARCHIVER(GRP);
Expand Down
2 changes: 1 addition & 1 deletion src/physfs_archiver_7z.c
Expand Up @@ -387,7 +387,7 @@ static int SZIP_stat(void *opaque, const char *path, PHYSFS_Stat *stat)
} /* SZIP_stat */


const PHYSFS_Archiver __PHYSFS_Archiver_SZIP =
const PHYSFS_Archiver __PHYSFS_Archiver_7Z =
{
CURRENT_PHYSFS_ARCHIVER_API_VERSION,
{
Expand Down
2 changes: 1 addition & 1 deletion src/physfs_internal.h
Expand Up @@ -79,7 +79,7 @@ extern "C" {
wrapped in PHYSFS_SUPPORTS_* checks before actually referencing them. */
extern const PHYSFS_Archiver __PHYSFS_Archiver_DIR;
extern const PHYSFS_Archiver __PHYSFS_Archiver_ZIP;
extern const PHYSFS_Archiver __PHYSFS_Archiver_SZIP;
extern const PHYSFS_Archiver __PHYSFS_Archiver_7Z;
extern const PHYSFS_Archiver __PHYSFS_Archiver_GRP;
extern const PHYSFS_Archiver __PHYSFS_Archiver_QPAK;
extern const PHYSFS_Archiver __PHYSFS_Archiver_HOG;
Expand Down

0 comments on commit 6d91dde

Please sign in to comment.