diff options
author | fulup <fulup.arfoll@iot.bzh> | 2017-08-15 12:48:59 +0200 |
---|---|---|
committer | fulup <fulup.arfoll@iot.bzh> | 2017-08-15 12:48:59 +0200 |
commit | e8b7ffa70194d1cc3ef4cc52bb0ace9f133514cf (patch) | |
tree | 63670aff03ca38b0a1da102f23e7223997f5b1f3 /Controler-afb/ctl-binding.c | |
parent | 96f0057d65fbb90d9faa02a3ae4ae37b357094db (diff) |
docall working with simple table
Diffstat (limited to 'Controler-afb/ctl-binding.c')
-rw-r--r-- | Controler-afb/ctl-binding.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Controler-afb/ctl-binding.c b/Controler-afb/ctl-binding.c index 19f97eb..554199b 100644 --- a/Controler-afb/ctl-binding.c +++ b/Controler-afb/ctl-binding.c @@ -69,7 +69,8 @@ PUBLIC int CtlBindingInit () { errcount += LuaLibInit(); // now that everything is initialised execute the onload action - errcount += DispatchOneOnLoad(CONTROL_ONLOAD_DEFAULT); + if (!errcount) + errcount += DispatchOneOnLoad(CONTROL_ONLOAD_DEFAULT); AFB_DEBUG ("Audio Policy Control Binding Done errcount=%d", errcount); return errcount; |