controlbindings: name is not a const
authorEdward Hervey <edward.hervey@collabora.co.uk>
Wed, 25 Jan 2012 10:49:50 +0000 (11:49 +0100)
committerEdward Hervey <edward.hervey@collabora.co.uk>
Wed, 25 Jan 2012 10:50:49 +0000 (11:50 +0100)
It gets modified during the life of the object. Fixes build.

gst/gstcontrolbinding.h

index 78b3661..96652fa 100644 (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 >*/