summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWim Taymans <wim.taymans@gmail.com>2002-09-12 20:53:56 +0000
committerWim Taymans <wim.taymans@gmail.com>2002-09-12 20:53:56 +0000
commit1868b0e348f4907f78597484ec1e6759b34a6d3b (patch)
tree8c6742e7409fb0af287aa4f5032cfe2a3d5c06f3
parent2d22fed727d7003381dba92b15e348642aed9719 (diff)
const fixes
Original commit message from CVS: const fixes
-rw-r--r--examples/dynparams/filter.c2
-rw-r--r--gst/avi/gstavidemux.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/examples/dynparams/filter.c b/examples/dynparams/filter.c
index 6b80c3f9..39240500 100644
--- a/examples/dynparams/filter.c
+++ b/examples/dynparams/filter.c
@@ -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");
diff --git a/gst/avi/gstavidemux.c b/gst/avi/gstavidemux.c
index 44d9478e..befb6331 100644
--- a/gst/avi/gstavidemux.c
+++ b/gst/avi/gstavidemux.c
@@ -996,7 +996,7 @@ gst_avi_demux_sync_streams (GstAviDemux *avi_demux, guint64 time)
static gboolean
gst_avi_demux_send_event (GstElement *element, GstEvent *event)
{
- GList *pads;
+ const GList *pads;
pads = gst_element_get_pad_list (element);