From af5d456533121c4fb9ee4e0550c7bb224ab25050 Mon Sep 17 00:00:00 2001 From: Thomas Vander Stichele Date: Mon, 19 Sep 2005 14:20:37 +0000 Subject: [PATCH] don't complain about my ARM .so files. Another reason why it does make sense to have plugins follow a standard file ... Original commit message from CVS: don't complain about my ARM .so files. Another reason why it does make sense to have plugins follow a standard file name pattern like libgst(whatever).so --- gst/gstplugin.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gst/gstplugin.c b/gst/gstplugin.c index ae5ca7ef70..2fd410cfe8 100644 --- a/gst/gstplugin.c +++ b/gst/gstplugin.c @@ -375,7 +375,7 @@ gst_plugin_load_file (const gchar * filename, GError ** error) module = g_module_open (filename, G_MODULE_BIND_LOCAL); if (module == NULL) { - GST_CAT_ERROR (GST_CAT_PLUGIN_LOADING, "module_open failed: %s", + GST_CAT_WARNING (GST_CAT_PLUGIN_LOADING, "module_open failed: %s", g_module_error ()); g_set_error (error, GST_PLUGIN_ERROR, GST_PLUGIN_ERROR_MODULE, "Opening module failed");