const fixes
authorWim Taymans <wim.taymans@gmail.com>
Thu, 12 Sep 2002 20:53:56 +0000 (20:53 +0000)
committerWim Taymans <wim.taymans@gmail.com>
Thu, 12 Sep 2002 20:53:56 +0000 (20:53 +0000)
Original commit message from CVS:
const fixes

examples/dynparams/filter.c
gst-libs/gst/gconf/gconf.c
gst/adder/gstadder.c
tests/old/examples/dynparams/filter.c

index 6b80c3f..3924050 100644 (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");
index 3a5f79d..3da2c31 100644 (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);
index f6e8db1..e9348cf 100644 (file)
@@ -260,7 +260,8 @@ static GstPadConnectReturn
 gst_adder_connect (GstPad *pad, GstCaps *caps)
 {
   GstAdder *adder;
-  GList *sinkpads, *remove = NULL;
+  const GList *sinkpads;
+  GList *remove = NULL;
   GSList *channels;
   GstPad *p;
   
index 6b80c3f..3924050 100644 (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");