X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=src%2Fafb-apis.c;h=834850f222490f7743a706a13d3bf8957227cc3a;hb=7ea1657b459aea2cc6ef9332621a19d7e2676b1d;hp=da0b98f050592ffead96be2cf15dadce9a791b6b;hpb=f1b901ed676b2d45ec8e6ae3d6ef2f94d79f9ee6;p=src%2Fapp-framework-binder.git diff --git a/src/afb-apis.c b/src/afb-apis.c index da0b98f0..834850f2 100644 --- a/src/afb-apis.c +++ b/src/afb-apis.c @@ -51,14 +51,14 @@ int afb_apis_add(const char *name, struct afb_api api) /* check existing or not */ len = strlen(name); if (len == 0) { - fprintf(stderr, "empty api name forbidden\n"); + ERROR("empty api name forbidden"); goto error; } /* check previously existing plugin */ for (i = 0 ; i < apis_count ; i++) { if (!strcasecmp(apis_array[i].name, name)) { - fprintf(stderr, "ERROR: api of name %s already exists\n", name); + ERROR("api of name %s already exists", name); goto error; } } @@ -66,7 +66,7 @@ int afb_apis_add(const char *name, struct afb_api api) /* allocates enough memory */ apis = realloc(apis_array, ((unsigned)apis_count + 1) * sizeof * apis); if (apis == NULL) { - fprintf(stderr, "out of memory\n"); + ERROR("out of memory"); goto error; } apis_array = apis;