summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/OSSupport/Queue.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/OSSupport/Queue.h b/src/OSSupport/Queue.h
index 65f9bd258..bf6d7e451 100644
--- a/src/OSSupport/Queue.h
+++ b/src/OSSupport/Queue.h
@@ -134,8 +134,8 @@ public:
bool Remove(ItemType item)
{
cCSLock Lock(m_CS);
- m_contents.remove(item);
m_evtRemoved.Set();
+ return m_contents.remove(item);
}
private: