diff options
author | Thomas Vander Stichele <thomas@apestaart.org> | 2002-09-09 23:24:29 +0000 |
---|---|---|
committer | Thomas Vander Stichele <thomas@apestaart.org> | 2002-09-09 23:24:29 +0000 |
commit | 48e9846ca04467222478a067fbba47f02ff19ea2 (patch) | |
tree | e6ee834257c4d9b22e8a89f619423ce3ff8e830e /gst/flx/gstflxdec.c | |
parent | e3741783bdcd448d594efe0f45fea2ae22611c62 (diff) | |
download | gst-plugins-bad-48e9846ca04467222478a067fbba47f02ff19ea2.tar.gz gst-plugins-bad-48e9846ca04467222478a067fbba47f02ff19ea2.tar.bz2 gst-plugins-bad-48e9846ca04467222478a067fbba47f02ff19ea2.zip |
removing warnings (approved by wtay)
Original commit message from CVS:
removing warnings (approved by wtay)
Diffstat (limited to 'gst/flx/gstflxdec.c')
-rw-r--r-- | gst/flx/gstflxdec.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/gst/flx/gstflxdec.c b/gst/flx/gstflxdec.c index 0b099cbc..d54fc988 100644 --- a/gst/flx/gstflxdec.c +++ b/gst/flx/gstflxdec.c @@ -678,10 +678,8 @@ plugin_init (GModule *module, GstPlugin *plugin) GstTypeFactory *type; /* this filter needs the bytestream package */ - if (!gst_library_load("gstbytestream")) { - gst_info("flxdec:: could not load support library: 'gstbytestream'\n"); + if (!gst_library_load ("gstbytestream")) return FALSE; - } factory = gst_element_factory_new("flxdec", GST_TYPE_FLXDEC, &flxdec_details); g_return_val_if_fail(factory != NULL, FALSE); |