diff options
author | fulup <fulup.arfoll@iot.bzh> | 2018-06-10 00:49:02 +0200 |
---|---|---|
committer | fulup <fulup.arfoll@iot.bzh> | 2018-06-10 00:49:02 +0200 |
commit | fe8135a9a769f9df7e7e0d0eeacdd8497661a8c4 (patch) | |
tree | 8dbbc2d1eb0c4f011b6b683be2401a6b4829027f /mixer-binding/mixer-binding.c | |
parent | 5247b9daa560a7fc2833578a3b8280d00e00c8e0 (diff) |
Cleanup and added return of previous volume when setting new value
Diffstat (limited to 'mixer-binding/mixer-binding.c')
-rw-r--r-- | mixer-binding/mixer-binding.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mixer-binding/mixer-binding.c b/mixer-binding/mixer-binding.c index ab61baa..20d4651 100644 --- a/mixer-binding/mixer-binding.c +++ b/mixer-binding/mixer-binding.c @@ -40,7 +40,7 @@ STATIC void ctrlapi_ping (AFB_ReqT request) { count++; AFB_ReqNotice (request, "Controller:ping count=%d", count); - AFB_ReqSucess(request,json_object_new_int(count), NULL); + AFB_ReqSuccess(request,json_object_new_int(count), NULL); return; } |