Call fseek64 only with MSVC

Signed-off-by: Osyotr <Osyotr@users.noreply.github.com>
This commit is contained in:
Osyotr 2024-04-03 02:13:37 +03:00 committed by Alexander Borsuk
parent 0989641208
commit e7c10c4eaa

View file

@ -36,8 +36,11 @@ FileData::FileData(string const & fileName, Op op)
m_File = fopen(fileName.c_str(), modes[op]);
if (m_File)
{
#if defined(_MSC_VER)
// Move file pointer to the end of the file to make it consistent with other platforms
if (op == OP_APPEND)
fseek64(m_File, 0, SEEK_END);
#endif
return;
}