Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fixed compiler warning.
  • Loading branch information
icculus committed Jul 26, 2017
1 parent 99992bb commit 32930ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/physfs_archiver_zip.c
Expand Up @@ -322,7 +322,7 @@ static PHYSFS_sint64 ZIP_read(PHYSFS_Io *_io, void *buf, PHYSFS_uint64 len)

while (retval < maxread)
{
PHYSFS_uint32 before = finfo->stream.total_out;
const PHYSFS_uint32 before = (PHYSFS_uint32) finfo->stream.total_out;
int rc;

if (finfo->stream.avail_in == 0)
Expand Down

0 comments on commit 32930ef

Please sign in to comment.