diff options
author | 2018-08-30 11:03:22 +0200 | |
---|---|---|
committer | 2018-08-30 11:03:22 +0200 | |
commit | a185e5cf960ec2083fc45048e93a3a22a02c094f (patch) | |
tree | 9a80e4401d0538d3729518420d8de2f69f0275d6 /ctl-lib/ctl-lua.c | |
parent | 82820f44b1307ef8c6e12a505f383037fdad9fcb (diff) |
shared library: update to a v3 shared library
- AFB_BINDING_VERSION = 3
- remove preprocessor variables
- mandatory lua
- name of library is ctl-utilities
- does not work with v2 versions
Signed-off-by: Clément Bénier <clement.benier@iot.bzh>
Diffstat (limited to 'ctl-lib/ctl-lua.c')
-rw-r--r-- | ctl-lib/ctl-lua.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ctl-lib/ctl-lua.c b/ctl-lib/ctl-lua.c index 1a2554c..8d67ae4 100644 --- a/ctl-lib/ctl-lua.c +++ b/ctl-lib/ctl-lua.c @@ -40,7 +40,7 @@ #endif static lua_State* luaState; -CtlPluginT *ctlPlugins = NULL; +static CtlPluginT *ctlPlugins = NULL; #if CTX_MAGIC_VALUE static int CTX_MAGIC = CTX_MAGIC_VALUE; |