summaryrefslogtreecommitdiffstats
path: root/source
diff options
context:
space:
mode:
authorDave Davenport <qball@gmpclient.org>2017-05-28 17:16:25 +0200
committerDave Davenport <qball@gmpclient.org>2017-05-28 17:16:25 +0200
commit84473f6f966ab20db9d74f1c4169d55f2a5d1d72 (patch)
treebe87ea6f1f1c45b16ee714a2a1c8c77304610b73 /source
parente65c306e1a9f11492d53e22ea324f36141c58069 (diff)
parent89e9c2d0a54709c79bb22f327c0ba8237c1412f0 (diff)
Merge remote-tracking branch 'origin/master' into barview
Diffstat (limited to 'source')
-rw-r--r--source/rofi.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/source/rofi.c b/source/rofi.c
index e802f0ed..1fe17c27 100644
--- a/source/rofi.c
+++ b/source/rofi.c
@@ -101,7 +101,7 @@ struct xkb_stuff xkb = {
};
/** Path to the configuration file */
-char *config_path = NULL;
+G_MODULE_EXPORT char *config_path = NULL;
/** Array holding all activated modi. */
Mode **modi = NULL;
@@ -558,6 +558,8 @@ static void rofi_collect_modi_dir ( const char *base_dir )
g_warning ( "Symbol 'mode' not found in module: %s", dn );
g_module_close ( mod );
}
+ } else {
+ g_warning ( "Failed to open 'mode' plugin: '%s', error: %s", dn, g_module_error());
}
g_free ( fn );
}