controlbindings: name is not a const

It gets modified during the life of the object. Fixes build.
This commit is contained in:
Edward Hervey 2012-01-25 11:49:50 +01:00
parent 35ea12eeea
commit ea7c1225c1

View file

@ -67,7 +67,7 @@ struct _GstControlBinding {
GstObject parent;
/*< public >*/
const gchar *name; /* name of the property */
gchar *name; /* name of the property */
GParamSpec *pspec; /* GParamSpec for this property */
/*< private >*/