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:
Sebastian Dröge 2014-12-12 13:57:39 +01:00
parent 8fadde9d23
commit 82117cae03

View file

@ -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);