mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-22 17:51:16 +00:00
gstalsaplugin: return the result of the element registration
Previously there were branches that would return FALSE, however it looks like we forgot to return the new result variable. https://gitlab.freedesktop.org/gstreamer/gst-plugins-base/-/merge_requests/900 Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/2695>
This commit is contained in:
parent
b8010e41a1
commit
bc3e07dc21
1 changed files with 1 additions and 1 deletions
|
@ -39,7 +39,7 @@ plugin_init (GstPlugin * plugin)
|
|||
ret |= GST_ELEMENT_REGISTER (alsasink, plugin);
|
||||
ret |= GST_ELEMENT_REGISTER (alsamidisrc, plugin);
|
||||
|
||||
return TRUE;
|
||||
return ret;
|
||||
}
|
||||
|
||||
GST_PLUGIN_DEFINE (GST_VERSION_MAJOR,
|
||||
|
|
Loading…
Reference in a new issue