Fixed compiler warning.

This commit is contained in:
Ryan C. Gordon 2017-07-26 16:08:32 -04:00
parent 99992bb1d5
commit 32930ef41d
1 changed files with 1 additions and 1 deletions

View File

@ -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)