mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 18:21:04 +00:00
debugutils: Fix compiler warning
gstdebugutils.c: In function 'gst_debug_bin_to_dot_data': gstdebugutils.c:683:530: error: 'return' with no value, in function returning non-void [-Werror] g_return_if_fail (GST_IS_BIN (bin));
This commit is contained in:
parent
8fadde9d23
commit
82117cae03
1 changed files with 1 additions and 1 deletions
|
@ -680,7 +680,7 @@ gst_debug_bin_to_dot_data (GstBin * bin, GstDebugGraphDetails details)
|
||||||
{
|
{
|
||||||
GString *str;
|
GString *str;
|
||||||
|
|
||||||
g_return_if_fail (GST_IS_BIN (bin));
|
g_return_val_if_fail (GST_IS_BIN (bin), NULL);
|
||||||
|
|
||||||
str = g_string_new (NULL);
|
str = g_string_new (NULL);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue