summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--NEWS6
-rw-r--r--src/instance.c2
2 files changed, 7 insertions, 1 deletions
diff --git a/NEWS b/NEWS
index 0787541..e81d35f 100644
--- a/NEWS
+++ b/NEWS
@@ -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;
}