summaryrefslogtreecommitdiffstats
path: root/4a-hal/4a-hal-controllers
diff options
context:
space:
mode:
authorJonathan Aillet <jonathan.aillet@iot.bzh>2018-06-08 10:53:34 +0200
committerJonathan Aillet <jonathan.aillet@iot.bzh>2018-10-08 15:52:51 +0200
commit180b6af527b44dc8d5c4c9f7931e9ccf45d13811 (patch)
tree65b89bca03a6b3c1c93fa394adad727da441a52b /4a-hal/4a-hal-controllers
parentc7ed18bbd20e1c1cbb9c753a7908c61dc5a23115 (diff)
Correct a typo in responses
Correct a typo in responses of the callback that transfer action to mixer. Change-Id: Ic9c33c00367963a6a3d3dbdf21b0e4cad27d0f7d Signed-off-by: Jonathan Aillet <jonathan.aillet@iot.bzh>
Diffstat (limited to '4a-hal/4a-hal-controllers')
-rw-r--r--4a-hal/4a-hal-controllers/4a-hal-controllers-cb.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/4a-hal/4a-hal-controllers/4a-hal-controllers-cb.c b/4a-hal/4a-hal-controllers/4a-hal-controllers-cb.c
index 08ee5c0..5168a1d 100644
--- a/4a-hal/4a-hal-controllers/4a-hal-controllers-cb.c
+++ b/4a-hal/4a-hal-controllers/4a-hal-controllers-cb.c
@@ -148,12 +148,12 @@ void HalCtlsActionOnStream(AFB_ReqT request)
else if(json_object_object_get_ex(returnJ, "response", &toReturnJ)){
AFB_ReqSucessF(request,
toReturnJ,
- "Action %s correctly transfered to %s without any error raised",
+ "Action %s correctly transferred to %s without any error raised",
verbToCall,
apiToCall);
}
else {
- AFB_ReqFailF(request, "invalid_response", "Action %s correctly transfered to %s, but response is not valid",
+ AFB_ReqFailF(request, "invalid_response", "Action %s correctly transferred to %s, but response is not valid",
verbToCall,
apiToCall);
}