diff options
author | Fulup Ar Foll <fulup@iot.bzh> | 2018-05-18 17:32:40 +0200 |
---|---|---|
committer | Fulup Ar Foll <fulup@iot.bzh> | 2018-05-18 17:32:40 +0200 |
commit | 2af80583a462fa0f71d0250bca03db5a4cf22fe8 (patch) | |
tree | d0c4086a2a87d8f539bb7525349faa91e72c5746 /plugins | |
parent | a2ea0dd94d803ee8e5eb79c6494f0d4c76cbcc90 (diff) |
Update to last controller fix
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/alsa/alsa-softmixer.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/alsa/alsa-softmixer.c b/plugins/alsa/alsa-softmixer.c index b414e20..11d611d 100644 --- a/plugins/alsa/alsa-softmixer.c +++ b/plugins/alsa/alsa-softmixer.c @@ -22,11 +22,11 @@ // Force Lua2cWrapper inclusion within already existing plugin -CTLP_LUA_Registry("alsa-softmixer") +CTLP_LUA_REGISTER("alsa-softmixer") // Call at initialisation time CTLP_ONLOAD(plugin, callbacks) { AFB_ApiDebug(plugin->api, "SoftMixer Plugin Registryed: uid='%s' 'info='%s'", plugin->uid, plugin->info); - return NULL; + return 0; } |