summaryrefslogtreecommitdiff
path: root/src/LuaTask.cc
diff options
context:
space:
mode:
authorPixel <pixel@nobis-crew.org>2012-04-03 09:30:58 -0700
committerPixel <pixel@nobis-crew.org>2012-04-03 09:30:58 -0700
commit532f3e7bae955f8da4c2028bc462134ed10ff414 (patch)
tree239b1dfc5cf4694cfba375d1306dc8bbe2b5b4b8 /src/LuaTask.cc
parent37221dc091725c6fea09181b845308ab8f26c795 (diff)
Slightly more change to the Queue system, so Debug mode doesn't freak pout.
Diffstat (limited to 'src/LuaTask.cc')
-rw-r--r--src/LuaTask.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/LuaTask.cc b/src/LuaTask.cc
index acf63b5..80a56f6 100644
--- a/src/LuaTask.cc
+++ b/src/LuaTask.cc
@@ -32,7 +32,7 @@ void Balau::LuaMainTask::stop() {
void Balau::LuaMainTask::Do() {
while (!m_stopping) {
LuaExecCell * cell;
- while ((cell = m_queue.pop(false))) {
+ while ((cell = m_queue.pop())) {
if (dynamic_cast<LuaTaskDummy *>(cell)) {
delete cell;
break;