mirror of
https://github.com/xmrig/xmrig.git
synced 2024-11-05 16:07:42 +00:00
Fix FileLog error 'invalid seek' on non-seekable files
This commit is contained in:
parent
6a4f817693
commit
19f409a85b
1 changed files with 1 additions and 1 deletions
|
@ -93,5 +93,5 @@ void FileLog::write(char *data, size_t size)
|
|||
uv_fs_t *req = new uv_fs_t;
|
||||
req->data = buf.base;
|
||||
|
||||
uv_fs_write(uv_default_loop(), req, m_file, &buf, 1, 0, FileLog::onWrite);
|
||||
uv_fs_write(uv_default_loop(), req, m_file, &buf, 1, -1, FileLog::onWrite);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue