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:
Tim-Philipp Müller 2007-12-13 13:59:04 +00:00
parent bc8b9fdbb4
commit 988e0b2da8
3 changed files with 7 additions and 2 deletions

View file

@ -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> 2007-12-13 Tim-Philipp Müller <tim at centricular dot net>
* gst/gstobject.c: (gst_object_dispatch_properties_changed): * gst/gstobject.c: (gst_object_dispatch_properties_changed):

2
common

@ -1 +1 @@
Subproject commit fb7ab03319930496e922173d54f6dfccfff6f357 Subproject commit ea5f2cfab1a164a5d285fe745343cbe0a476a904

View file

@ -3090,7 +3090,7 @@ element_find_unconnected_pad (GstElement * element, GstPadDirection direction)
iter = gst_element_iterate_sink_pads (element); iter = gst_element_iterate_sink_pads (element);
break; break;
default: default:
g_assert_not_reached (); g_return_val_if_reached (NULL);
} }
done = FALSE; done = FALSE;