From 82f259f6b54a778953fc6715a40e78705977a08c Mon Sep 17 00:00:00 2001 From: =?utf8?q?Enrico=20Tr=C3=B6ger?= Date: Sun, 3 Feb 2013 12:35:05 +0100 Subject: [PATCH] Print filename of failed plugin --- scripts/plugin_test.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/scripts/plugin_test.c b/scripts/plugin_test.c index 7e1370c51..26d913f55 100644 --- a/scripts/plugin_test.c +++ b/scripts/plugin_test.c @@ -67,7 +67,7 @@ static gboolean test_plugin(const gchar *filename) module = g_module_open(filename, G_MODULE_BIND_LOCAL); if (! module) { - g_warning("Can't load plugin: %s", g_module_error()); + g_warning("Can't load plugin: \"%s\": %s", filename, g_module_error()); return FALSE; } @@ -121,4 +121,3 @@ gint main(gint argc, gchar **argv) return result; } - -- 2.11.4.GIT