mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-23 00:36:51 +00:00
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); ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ^
This commit is contained in:
parent
117849239c
commit
6e7af72aa3
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue