mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-22 09:41:07 +00:00
gst/gstutils.c: Fix possible compiler warning (#503417).
Original commit message from CVS: * gst/gstutils.c: (element_find_unconnected_pad): Fix possible compiler warning (#503417).
This commit is contained in:
parent
bc8b9fdbb4
commit
988e0b2da8
3 changed files with 7 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
|||
2007-12-13 Tim-Philipp Müller <tim at centricular dot net>
|
||||
|
||||
* gst/gstutils.c: (element_find_unconnected_pad):
|
||||
Fix possible compiler warning (#503417).
|
||||
|
||||
2007-12-13 Tim-Philipp Müller <tim at centricular dot net>
|
||||
|
||||
* gst/gstobject.c: (gst_object_dispatch_properties_changed):
|
||||
|
|
2
common
2
common
|
@ -1 +1 @@
|
|||
Subproject commit fb7ab03319930496e922173d54f6dfccfff6f357
|
||||
Subproject commit ea5f2cfab1a164a5d285fe745343cbe0a476a904
|
|
@ -3090,7 +3090,7 @@ element_find_unconnected_pad (GstElement * element, GstPadDirection direction)
|
|||
iter = gst_element_iterate_sink_pads (element);
|
||||
break;
|
||||
default:
|
||||
g_assert_not_reached ();
|
||||
g_return_val_if_reached (NULL);
|
||||
}
|
||||
|
||||
done = FALSE;
|
||||
|
|
Loading…
Reference in a new issue