From: Thierry Bultel Date: Fri, 7 Sep 2018 15:09:47 +0000 (+0200) Subject: afb-apiset: fixed the error message upon api open. X-Git-Tag: 5.99.6^0 X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?p=src%2Fapp-framework-binder.git;a=commitdiff_plain;h=29f544ba5fa53407575b549c1d3b0a4e2619af8f afb-apiset: fixed the error message upon api open. just a typo Change-Id: I2963c2568cffdc89f577e99f2280da6dcb732b04 Signed-off-by: Thierry Bultel --- diff --git a/src/afb-apiset.c b/src/afb-apiset.c index 6229b371..332d52da 100644 --- a/src/afb-apiset.c +++ b/src/afb-apiset.c @@ -788,11 +788,11 @@ static int start_api(struct api_desc *api) api->status = EBUSY; rc = start_array_classes(&api->require.classes); if (rc < 0) - ERROR("Can start classes needed by api %s", api->name); + ERROR("Cannot start classes needed by api %s", api->name); else { rc = start_array_depends(&api->require.apis); if (rc < 0) - ERROR("Can start apis needed by api %s", api->name); + ERROR("Cannot start apis needed by api %s", api->name); else if (api->api.itf->service_start) { rc = api->api.itf->service_start(api->api.closure); if (rc < 0)