aboutsummaryrefslogtreecommitdiffstats
path: root/core/componentmanager.lua
diff options
context:
space:
mode:
Diffstat (limited to 'core/componentmanager.lua')
-rw-r--r--core/componentmanager.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/componentmanager.lua b/core/componentmanager.lua
index e7b5e4dc..0b13c5c5 100644
--- a/core/componentmanager.lua
+++ b/core/componentmanager.lua
@@ -68,7 +68,7 @@ end
function create_component(host, component)
-- TODO check for host well-formedness
- session = session or { type = "component", host = host, connected = true, s2sout = {}, send = component };
+ local session = session or { type = "component", host = host, connected = true, s2sout = {}, send = component };
return session;
end