diff options
author | Wim Taymans <wim.taymans@gmail.com> | 2002-09-12 20:53:56 +0000 |
---|---|---|
committer | Wim Taymans <wim.taymans@gmail.com> | 2002-09-12 20:53:56 +0000 |
commit | d368d1ad76a9c66031371c6aba0d89138df4063e (patch) | |
tree | dbf290fd79c1f458c789c910d927f64049d82c37 /examples | |
parent | 9ddb9ed1af8b1f27bd83c29978ad6ad10fae3a90 (diff) |
const fixes
Original commit message from CVS:
const fixes
Diffstat (limited to 'examples')
-rw-r--r-- | examples/dynparams/filter.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/dynparams/filter.c b/examples/dynparams/filter.c index 6b80c3f90..39240500d 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"); |