diff options
author | watcher <watcherhd@gmail.com> | 2016-12-02 23:04:11 +0200 |
---|---|---|
committer | watcher <watcherhd@gmail.com> | 2016-12-02 23:04:11 +0200 |
commit | 038a1881e9d3b541b13439ce41fb91f12f953bfe (patch) | |
tree | 179cb6463d8018418f8515da391f19cd88572e0c /plugins/MirLua/Modules | |
parent | 4882bc420186a4aef19be699e3f621dec932417d (diff) |
Compilation fix
Diffstat (limited to 'plugins/MirLua/Modules')
-rw-r--r-- | plugins/MirLua/Modules/m_schedule/src/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/MirLua/Modules/m_schedule/src/main.cpp b/plugins/MirLua/Modules/m_schedule/src/main.cpp index 61fa6a0a97..52ff7788b0 100644 --- a/plugins/MirLua/Modules/m_schedule/src/main.cpp +++ b/plugins/MirLua/Modules/m_schedule/src/main.cpp @@ -68,7 +68,7 @@ wait: WaitForSingleObject(hScheduleEvent, waitTime); while (ScheduleTask *task = tasks[0])
{
- if (Miranda_Terminated())
+ if (Miranda_IsTerminated())
return;
mir_cslock lock(threadLock);
|