Fix file log for linux.

This commit is contained in:
XMRig 2017-06-23 19:37:41 +03:00
parent 95002ead7d
commit e97cd98f90
2 changed files with 9 additions and 5 deletions

View file

@ -41,7 +41,7 @@
FileLog::FileLog(const char *fileName)
{
uv_fs_t req;
m_file = uv_fs_open(uv_default_loop(), &req, fileName, O_CREAT | O_APPEND, 0644, nullptr);
m_file = uv_fs_open(uv_default_loop(), &req, fileName, O_CREAT | O_APPEND | O_WRONLY, 0644, nullptr);
uv_fs_req_cleanup(&req);
}