Skip to content

Commit

Permalink
Fix AppVeyour VC warning:'>': signed/unsigned mismatch
Browse files Browse the repository at this point in the history
  • Loading branch information
boxa committed Jun 21, 2017
1 parent 478752e commit 8525e89
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contrib/extractor/mpq_libmpq.cpp
Expand Up @@ -81,7 +81,7 @@ size_t MPQFile::read(void* dest, size_t bytes)
{
if (eof) return 0;

size_t rpos = pointer + bytes;
libmpq__off_t rpos = pointer + bytes;
if (rpos > size)
{
bytes = size - pointer;
Expand Down

0 comments on commit 8525e89

Please sign in to comment.