summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian@centricular.com>2014-10-19 13:34:59 +0200
committerSebastian Dröge <sebastian@centricular.com>2014-10-19 13:34:59 +0200
commit6e7af72aa36332b7f6f117252b9bc016871dc489 (patch)
tree18150bec82c0d1d9a061398950ae2f7dd1eeb055
parent117849239c3e19cdacf0a001c964d4d0dd413efc (diff)
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); ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ^
-rw-r--r--plugin/gstpythonplugin.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugin/gstpythonplugin.c b/plugin/gstpythonplugin.c
index 17c857b2a1..32b7405772 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;