Skip to content

Commit

Permalink
Fixed one more Visual Studio compiler warning.
Browse files Browse the repository at this point in the history
  • Loading branch information
icculus committed Aug 15, 2017
1 parent 735fd14 commit b311ee4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/physfs_archiver_zip.c
Expand Up @@ -1224,7 +1224,7 @@ static PHYSFS_sint64 zip64_find_end_of_central_dir(PHYSFS_Io *io,
if ((offset < pos) && (pos > 4))
{
const size_t maxbuflen = 256 * 1024;
size_t len = pos - offset;
size_t len = (size_t) (pos - offset);
PHYSFS_uint8 *buf = NULL;
PHYSFS_sint32 i;

Expand Down

0 comments on commit b311ee4

Please sign in to comment.