From ea7c1225c1e4f890dcc71a25143036467e3f02b8 Mon Sep 17 00:00:00 2001 From: Edward Hervey Date: Wed, 25 Jan 2012 11:49:50 +0100 Subject: [PATCH] controlbindings: name is not a const It gets modified during the life of the object. Fixes build. --- gst/gstcontrolbinding.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gst/gstcontrolbinding.h b/gst/gstcontrolbinding.h index 78b3661cd4..96652fab5b 100644 --- a/gst/gstcontrolbinding.h +++ b/gst/gstcontrolbinding.h @@ -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 >*/