diff options
-rw-r--r-- | src/afb-api-so.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/afb-api-so.c b/src/afb-api-so.c index da3c1322..ea7ffb1f 100644 --- a/src/afb-api-so.c +++ b/src/afb-api-so.c @@ -262,7 +262,7 @@ int afb_api_so_add_binding(const char *path) rc = 0; handle = dlopen(path, RTLD_NOW | RTLD_LOCAL); if (handle == NULL) { - ERROR("binding [%s] not loadable", path); + ERROR("binding [%s] not loadable: %s", path, dlerror()); goto error; } |