mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 20:21:24 +00:00
controlbindings: name is not a const
It gets modified during the life of the object. Fixes build.
This commit is contained in:
parent
35ea12eeea
commit
ea7c1225c1
1 changed files with 1 additions and 1 deletions
|
@ -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 >*/
|
||||
|
|
Loading…
Reference in a new issue