removing warnings (approved by wtay)

Original commit message from CVS:
removing warnings (approved by wtay)
This commit is contained in:
Thomas Vander Stichele 2002-09-09 23:24:27 +00:00
parent 046a6ffb8a
commit a734880ad3
2 changed files with 1 additions and 6 deletions

View file

@ -685,10 +685,8 @@ plugin_init (GModule *module, GstPlugin *plugin)
&adder_details);
g_return_val_if_fail(factory != NULL, FALSE);
if (! gst_library_load ("gstbytestream")) {
gst_info ("gstadder: could not load support library: 'gstbytestream'\n");
if (! gst_library_load ("gstbytestream"))
return FALSE;
}
gst_element_factory_add_pad_template (factory, GST_PAD_TEMPLATE_GET (gst_adder_src_template_factory));
gst_element_factory_add_pad_template (factory, GST_PAD_TEMPLATE_GET (gst_adder_sink_template_factory));

View file

@ -334,10 +334,7 @@ plugin_init (GModule *module, GstPlugin *plugin)
/* load support library */
if (!gst_library_load ("gstresample"))
{
gst_info ("audioscale: could not load support library: 'gstresample'\n");
return FALSE;
}
return TRUE;
}