Skip to content

Commit

Permalink
Fixed compiler warnings.
Browse files Browse the repository at this point in the history
  • Loading branch information
icculus committed Jul 22, 2017
1 parent a7616f3 commit 8ee7f5d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/archiver_iso9660.c
Expand Up @@ -314,7 +314,8 @@ static int parseVolumeDescriptor(PHYSFS_Io *io, PHYSFS_uint64 *_rootpos,

static void *ISO9660_openArchive(PHYSFS_Io *io, const char *filename, int forWriting)
{
PHYSFS_uint64 rootpos, len;
PHYSFS_uint64 rootpos = 0;
PHYSFS_uint64 len = 0;
int joliet = 0;
void *unpkarc = NULL;

Expand Down

0 comments on commit 8ee7f5d

Please sign in to comment.