diff options
author | Romain Forlot <romain.forlot@iot.bzh> | 2018-07-26 18:19:19 +0200 |
---|---|---|
committer | Romain Forlot <romain.forlot@iot.bzh> | 2018-12-13 15:02:55 +0100 |
commit | 0bbd307f9fdee0edc386d721254ff17d24f0d51f (patch) | |
tree | 7dd5d95f4004f8984dfc856405a63d77715cfea7 /ctl-lib/ctl-lua.h | |
parent | 949fe0da36576baed82c26364977c4e8b81182fa (diff) |
More precise log message when loading a Lua file
This will indicates what is the error at the LUA file loading
Change-Id: I258bf43a2200577998e05cf7b2253bdd510a468e
Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
Diffstat (limited to 'ctl-lib/ctl-lua.h')
-rw-r--r-- | ctl-lib/ctl-lua.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ctl-lib/ctl-lua.h b/ctl-lib/ctl-lua.h index 0ec4960..a02c6e1 100644 --- a/ctl-lib/ctl-lua.h +++ b/ctl-lib/ctl-lua.h @@ -52,7 +52,7 @@ typedef enum { } LuaDoActionT; extern const char *lua_utils; -extern int LuaLoadScript(const char *luaScriptPath); +extern int LuaLoadScript(AFB_ApiT apiHandle, const char *luaScriptPath); extern int LuaConfigLoad (AFB_ApiT apiHandle, const char *prefix); extern void LuaL2cNewLib(luaL_Reg *l2cFunc, int count, const char *prefix); extern int Lua2cWrapper(void* luaHandle, char *funcname, Lua2cFunctionT callback); |