X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=src%2Fafb-api-so-v1.c;h=b68d064a42c36231dd6978fff9eea22585a37266;hb=de0527f7cf5b4a4278698ab034a332cf75723300;hp=c7b40e8d6f176778e71e244030df53fb78ca9b73;hpb=5ef271effacb83552f9ea56572c751c2f5a556b6;p=src%2Fapp-framework-binder.git diff --git a/src/afb-api-so-v1.c b/src/afb-api-so-v1.c index c7b40e8d..b68d064a 100644 --- a/src/afb-api-so-v1.c +++ b/src/afb-api-so-v1.c @@ -164,7 +164,7 @@ int afb_api_so_v1_add(const char *path, void *handle, struct afb_apiset *declare /* allocates the description */ init = dlsym(handle, afb_api_so_v1_service_init); onevent = dlsym(handle, afb_api_so_v1_service_event); - export = afb_export_create_v1(declare_set, call_set, path, init, onevent); + export = afb_export_create_v1(declare_set, call_set, path, init, onevent, path); if (export == NULL) { ERROR("binding [%s] creation failure...", path); goto error;