From b7c17cf1a04031c3e4f63c95dc96876c630a5bd4 Mon Sep 17 00:00:00 2001 From: XMRig Date: Mon, 18 Feb 2019 12:39:52 +0700 Subject: [PATCH] Fixed Linux build. --- src/base/io/Watcher.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/base/io/Watcher.cpp b/src/base/io/Watcher.cpp index 93b66643..b8ea4c3b 100644 --- a/src/base/io/Watcher.cpp +++ b/src/base/io/Watcher.cpp @@ -82,7 +82,7 @@ void xmrig::Watcher::reload() m_listener->onFileChanged(m_path); # ifndef _WIN32 - uv_fs_event_stop(&m_fsEvent); + uv_fs_event_stop(m_fsEvent); start(); # endif }