Skip to content

Commit

Permalink
More patched to compile.
Browse files Browse the repository at this point in the history
  • Loading branch information
icculus committed Oct 6, 2011
1 parent a62e315 commit b7694ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion platform/posix.c
Expand Up @@ -383,7 +383,7 @@ int __PHYSFS_platformEOF(void *opaque)
{
PHYSFS_sint64 pos = __PHYSFS_platformTell(opaque);
PHYSFS_sint64 len = __PHYSFS_platformFileLength(opaque);
return((tell < 0) || (len < 0) || (pos >= len));
return((pos < 0) || (len < 0) || (pos >= len));
} /* __PHYSFS_platformEOF */


Expand Down

0 comments on commit b7694ab

Please sign in to comment.