From 180b6af527b44dc8d5c4c9f7931e9ccf45d13811 Mon Sep 17 00:00:00 2001 From: Jonathan Aillet Date: Fri, 8 Jun 2018 10:53:34 +0200 Subject: 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 --- 4a-hal/4a-hal-controllers/4a-hal-controllers-cb.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to '4a-hal') 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); } -- cgit 1.2.3-korg