const fixes

Original commit message from CVS:
const fixes
This commit is contained in:
Wim Taymans 2002-09-12 20:53:56 +00:00
parent 9ddb9ed1af
commit d368d1ad76
2 changed files with 2 additions and 2 deletions

View file

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

View file

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