summaryrefslogtreecommitdiff
path: root/src/LuaTask.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/LuaTask.cc')
-rw-r--r--src/LuaTask.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/LuaTask.cc b/src/LuaTask.cc
index c22cb68..0835765 100644
--- a/src/LuaTask.cc
+++ b/src/LuaTask.cc
@@ -52,7 +52,7 @@ void Balau::LuaMainTask::Do() {
try {
cell = m_queue.pop();
}
- catch (Balau::EAgain & e) {
+ catch (Balau::EAgain &) {
taskSwitch();
}
Printer::elog(E_TASK, "LuaMainTask at %p popped %p", this, cell);
@@ -81,7 +81,7 @@ void Balau::LuaTask::Do() {
else
m_cell->run(L);
}
- catch (EAgain & e) {
+ catch (EAgain &) {
}
catch (GeneralException & e) {
m_cell->m_exception = new GeneralException(e);