From: Tim-Philipp Müller Date: Sat, 23 Jul 2011 07:00:09 +0000 (+0100) Subject: controller: fix build failure due to compiler warning X-Git-Tag: RELEASE-0.10.36~233 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6a1e2cc6e5c0dab93e68881f82f1f626e7eca694;p=platform%2Fupstream%2Fgstreamer.git controller: fix build failure due to compiler warning Presumably with newer GLib version. https://bugzilla.gnome.org/show_bug.cgi?id=655155 --- diff --git a/libs/gst/controller/gstcontrollerprivate.h b/libs/gst/controller/gstcontrollerprivate.h index 6b5dcd9..2dc57a5 100644 --- a/libs/gst/controller/gstcontrollerprivate.h +++ b/libs/gst/controller/gstcontrollerprivate.h @@ -38,7 +38,7 @@ G_BEGIN_DECLS typedef struct _GstControlledProperty { GParamSpec *pspec; /* GParamSpec for this property */ - gchar *name; /* name of the property */ + const gchar *name; /* name of the property */ GstControlSource *csource; /* GstControlSource for this property */ gboolean disabled; GValue last_value;