diff options
-rw-r--r-- | NEWS | 6 | ||||
-rw-r--r-- | src/instance.c | 2 |
2 files changed, 7 insertions, 1 deletions
@@ -1,3 +1,9 @@ +suil (0.6.13) unstable; + + * Print system error message if module failes to load + + -- David Robillard <d@drobilla.net> Sun, 24 Feb 2013 11:33:04 -0500 + suil (0.6.12) stable; * Fix key events for X11 in Gtk without using a troublesome event filter diff --git a/src/instance.c b/src/instance.c index d5e744a..b45d7bf 100644 --- a/src/instance.c +++ b/src/instance.c @@ -107,7 +107,7 @@ open_wrapper(SuilHost* host, dlerror(); void* lib = dlopen(path, RTLD_NOW); if (!lib) { - SUIL_ERRORF("Unable to open wrap module %s\n", path); + SUIL_ERRORF("Unable to open wrap module %s (%s)\n", path, dlerror()); return NULL; } |