From 0c8db50b3bd94eaa2c4a78a3243920654d3d6d64 Mon Sep 17 00:00:00 2001 From: Jonathan Aillet Date: Fri, 1 Jun 2018 23:45:35 +0200 Subject: Fix typo in request reponses of a app fw verb Fix typo in request answers info message send back to application framework after an api verb call. Change-Id: Icbd06fc13d9abff8325145c355b6c8c3c6434e1c 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/4a-hal-controllers/4a-hal-controllers-cb.c') 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 be08165..8e62e3a 100644 --- a/4a-hal/4a-hal-controllers/4a-hal-controllers-cb.c +++ b/4a-hal/4a-hal-controllers/4a-hal-controllers-cb.c @@ -142,7 +142,7 @@ void HalCtlsActionOnStream(afb_request *request) HalCtlsHandleMixerCallError(request, apiToCall, verbToCall, returnJ, "stream_action"); } else if(json_object_object_get_ex(returnJ, "response", &toReturnJ)){ - afb_request_success_f(request, toReturnJ, "Action %s correctly transfered to %s, and successfull", + afb_request_success_f(request, toReturnJ, "Action %s correctly transfered to %s without any error raised", verbToCall, apiToCall); } @@ -183,7 +183,7 @@ void HalCtlsListVerbs(afb_request *request) } if(! currentCtlHalData->ctlHalSpecificData->ctlHalStreamsData.count) { - afb_request_fail(request, "no_data", "Won't be able to respond, no streams ofound"); + afb_request_fail(request, "no_data", "Won't be able to respond, no streams found"); return; } -- cgit 1.2.3-korg