summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/test-binding.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/test-binding.c b/src/test-binding.c
index aa9fde5..d465994 100644
--- a/src/test-binding.c
+++ b/src/test-binding.c
@@ -41,8 +41,6 @@ static void ctrlapi_ping(AFB_ReqT request) {
count++;
AFB_ReqNotice(request, "Controller:ping count=%d", count);
AFB_ReqSuccess(request, json_object_new_int(count), NULL);
-
- return;
}
static void ctrlapi_exit(AFB_ReqT request) {
@@ -50,8 +48,6 @@ static void ctrlapi_exit(AFB_ReqT request) {
AFB_ReqNotice(request, "Exiting...");
AFB_ReqSuccess(request, NULL, NULL);
exit(0);
-
- return;
}
static AFB_ApiVerbs CtrlApiVerbs[] = {