summaryrefslogtreecommitdiff
path: root/pyuno
diff options
context:
space:
mode:
Diffstat (limited to 'pyuno')
-rw-r--r--pyuno/source/module/pyuno_dlopenwrapper.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/pyuno/source/module/pyuno_dlopenwrapper.c b/pyuno/source/module/pyuno_dlopenwrapper.c
index c726635b054f..2f9d4fc6987d 100644
--- a/pyuno/source/module/pyuno_dlopenwrapper.c
+++ b/pyuno/source/module/pyuno_dlopenwrapper.c
@@ -64,6 +64,7 @@ static void * load(void * address, char const * symbol) {
h = dlopen(libname, RTLD_NOW | RTLD_GLOBAL);
free(libname);
if (h == NULL) {
+ fprintf(stderr, "failed to load pyuno: '%s'\n", dlerror());
abort();
}
func = dlsym(h, symbol);