From: Dana Jansens Date: Wed, 26 Mar 2003 01:41:06 +0000 (+0000) Subject: print a warning when a module fails to open X-Git-Url: https://git.brokenzipper.com/gitweb?a=commitdiff_plain;h=4840f7e837d5f74f8c20d600c90936e954afa8a0;p=chaz%2Fopenbox print a warning when a module fails to open --- diff --git a/openbox/plugin.c b/openbox/plugin.c index 281b1cde..57d2f2bc 100644 --- a/openbox/plugin.c +++ b/openbox/plugin.c @@ -44,6 +44,7 @@ static Plugin *plugin_new(char *name) } if (p->module == NULL) { + g_warning(g_module_error()); g_free(p); return NULL; }