mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-17 11:45:25 +00:00
const fixes
Original commit message from CVS: const fixes
This commit is contained in:
parent
9ddb9ed1af
commit
d368d1ad76
2 changed files with 2 additions and 2 deletions
|
@ -61,7 +61,7 @@ gst_bin_find_unconnected_pad (GstBin *bin, GstPadDirection direction,
|
|||
{
|
||||
GstPad *pad = NULL;
|
||||
GList *elements = NULL;
|
||||
GList *pads = NULL;
|
||||
const GList *pads = NULL;
|
||||
GstElement *element = NULL;
|
||||
|
||||
g_print ("DEBUG: find_unconnected start\n");
|
||||
|
|
|
@ -26,7 +26,7 @@ gst_bin_find_unconnected_pad (GstBin *bin, GstPadDirection direction)
|
|||
{
|
||||
GstPad *pad = NULL;
|
||||
GList *elements = NULL;
|
||||
GList *pads = NULL;
|
||||
const GList *pads = NULL;
|
||||
GstElement *element = NULL;
|
||||
|
||||
elements = (GList *) gst_bin_get_list (bin);
|
||||
|
|
Loading…
Reference in a new issue