Fix warnings due to previous checkin

Original commit message from CVS:
Fix warnings due to previous checkin
This commit is contained in:
David Schleef 2003-10-31 20:54:44 +00:00
parent c9afa67e67
commit 42c5e74e0d
2 changed files with 3 additions and 3 deletions

View file

@ -83,7 +83,7 @@ gst_pipeline_get_type (void) {
static void
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);
}

View file

@ -200,8 +200,8 @@ gst_plugin_load_file (const gchar *filename, GError **error)
g_set_error (error,
GST_PLUGIN_ERROR,
GST_PLUGIN_ERROR_MODULE,
"Problem opening file %s (plugin %s)\n",
filename, plugin->desc.name);
"Problem opening file %s\n",
filename);
return FALSE;
}