mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-23 16:50:47 +00:00
Fix warnings due to previous checkin
Original commit message from CVS: Fix warnings due to previous checkin
This commit is contained in:
parent
c9afa67e67
commit
42c5e74e0d
2 changed files with 3 additions and 3 deletions
|
@ -83,7 +83,7 @@ gst_pipeline_get_type (void) {
|
||||||
static void
|
static void
|
||||||
gst_pipeline_base_init (gpointer g_class)
|
gst_pipeline_base_init (gpointer g_class)
|
||||||
{
|
{
|
||||||
GstElementClass *gstelement_class;
|
GstElementClass *gstelement_class = GST_ELEMENT_CLASS (g_class);
|
||||||
|
|
||||||
gst_element_class_set_details (gstelement_class, &gst_pipeline_details);
|
gst_element_class_set_details (gstelement_class, &gst_pipeline_details);
|
||||||
}
|
}
|
||||||
|
|
|
@ -200,8 +200,8 @@ gst_plugin_load_file (const gchar *filename, GError **error)
|
||||||
g_set_error (error,
|
g_set_error (error,
|
||||||
GST_PLUGIN_ERROR,
|
GST_PLUGIN_ERROR,
|
||||||
GST_PLUGIN_ERROR_MODULE,
|
GST_PLUGIN_ERROR_MODULE,
|
||||||
"Problem opening file %s (plugin %s)\n",
|
"Problem opening file %s\n",
|
||||||
filename, plugin->desc.name);
|
filename);
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue