1
0

More cFile warning fixes.

This commit is contained in:
madmaxoft 2014-04-01 16:00:20 +02:00
parent fd062f611e
commit 2672b14c03

View File

@ -232,7 +232,7 @@ int cFile::GetSize(void) const
return -1;
}
int res = Tell();
if (fseek(m_File, (size_t)CurPos, SEEK_SET) != 0)
if (fseek(m_File, (long)CurPos, SEEK_SET) != 0)
{
return -1;
}