forked from organicmaps/organicmaps
Call fseek64 only with MSVC
Signed-off-by: Osyotr <Osyotr@users.noreply.github.com>
This commit is contained in:
parent
0989641208
commit
e7c10c4eaa
1 changed files with 3 additions and 0 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue