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 | 1868b0e348f4907f78597484ec1e6759b34a6d3b (patch) | |
tree | 8c6742e7409fb0af287aa4f5032cfe2a3d5c06f3 /examples/dynparams | |
parent | 2d22fed727d7003381dba92b15e348642aed9719 (diff) |
const fixes
Original commit message from CVS:
const fixes
Diffstat (limited to 'examples/dynparams')
-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 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"); |