aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThierry Bultel <thierry.bultel@iot.bzh>2018-09-07 17:09:47 +0200
committerThierry Bultel <thierry.bultel@iot.bzh>2018-09-07 17:09:47 +0200
commit29f544ba5fa53407575b549c1d3b0a4e2619af8f (patch)
treea9d9a6d433e2e7dab03e8490a16b3f39a3d2eae6
parent8647a3478674979cca582774168a6f220de171ef (diff)
afb-apiset: fixed the error message upon api open.flounder_5.99.6flounder/5.99.65.99.6
just a typo Change-Id: I2963c2568cffdc89f577e99f2280da6dcb732b04 Signed-off-by: Thierry Bultel <thierry.bultel@iot.bzh>
-rw-r--r--src/afb-apiset.c4
1 files changed, 2 insertions, 2 deletions
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)