More patched to compile.

This commit is contained in:
Ryan C. Gordon 2011-10-06 03:26:51 -04:00
parent a62e315088
commit b7694abe3c
1 changed files with 1 additions and 1 deletions

View File

@ -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 */