From 6e7af72aa36332b7f6f117252b9bc016871dc489 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Sebastian=20Dr=C3=B6ge?= Date: Sun, 19 Oct 2014 13:34:59 +0200 Subject: [PATCH] pythonplugin: Fix compiler warning about unused format string argument CC libgstpythonplugin_la-gstpythonplugin.lo gstpythonplugin.c:192:65: warning: data argument not used by format string [-Wformat-extra-args] GST_DEBUG ("GST_PLUGIN_SYSTEM_PATH set to %s", plugin_path, plugin_path); ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ^ --- plugin/gstpythonplugin.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/gstpythonplugin.c b/plugin/gstpythonplugin.c index 17c857b..32b7405 100644 --- a/plugin/gstpythonplugin.c +++ b/plugin/gstpythonplugin.c @@ -189,7 +189,7 @@ gst_python_plugin_load (GstPlugin * plugin) gint i; /* 2.b. Scan GST_PLUGIN_SYSTEM_PATH */ - GST_DEBUG ("GST_PLUGIN_SYSTEM_PATH set to %s", plugin_path, plugin_path); + GST_DEBUG ("GST_PLUGIN_SYSTEM_PATH set to %s", plugin_path); list = g_strsplit (plugin_path, G_SEARCHPATH_SEPARATOR_S, 0); for (i = 0; list[i]; i++) { gchar *sysdir; -- 2.7.4