aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/LuaSL/src
diff options
context:
space:
mode:
authorDavid Walter Seikel2012-02-05 19:17:56 +1000
committerDavid Walter Seikel2012-02-05 19:17:56 +1000
commita74ae226b28937eb4609f890aa53afa18224baba (patch)
tree905fb3dc4b245f35d34e5952f04cf0c359e60987 /LuaSL/src
parentFix things so the wire protocol can be functions in the LSL.lua file, and _LS... (diff)
downloadSledjHamr-a74ae226b28937eb4609f890aa53afa18224baba.zip
SledjHamr-a74ae226b28937eb4609f890aa53afa18224baba.tar.gz
SledjHamr-a74ae226b28937eb4609f890aa53afa18224baba.tar.bz2
SledjHamr-a74ae226b28937eb4609f890aa53afa18224baba.tar.xz
Complete the separation of the guts of luaproc message sending from the Lua wrapper.
Diffstat (limited to 'LuaSL/src')
-rw-r--r--LuaSL/src/LuaSL_main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/LuaSL/src/LuaSL_main.c b/LuaSL/src/LuaSL_main.c
index 5f48c5e..d6485df 100644
--- a/LuaSL/src/LuaSL_main.c
+++ b/LuaSL/src/LuaSL_main.c
@@ -123,7 +123,7 @@ static void dirList_quit(const char *name, const char *path, void *data)
123 123
124 snprintf(buf, sizeof(buf), "%s/%s.events", path, name); 124 snprintf(buf, sizeof(buf), "%s/%s.events", path, name);
125// PD("Quitting Lua script %s", buf); 125// PD("Quitting Lua script %s", buf);
126 status = sendToChannel(buf, "quit()"); 126 status = sendToChannel(buf, "quit()", NULL, NULL);
127 if (status) 127 if (status)
128 PE("Error trying to kill script %s : %s", buf, status); 128 PE("Error trying to kill script %s : %s", buf, status);
129 } 129 }