From: Josep Torra Date: Thu, 25 Aug 2011 19:03:53 +0000 (+0200) Subject: padtemplate: explicitly cast to the enum types X-Git-Tag: RELEASE-0.10.36~195 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=480d415419367d92957af552e5fbc01a24f052c0;p=platform%2Fupstream%2Fgstreamer.git padtemplate: explicitly cast to the enum types Fixes warning #188: enumerated type mixed with another type reported by ICC. --- diff --git a/gst/gstpadtemplate.c b/gst/gstpadtemplate.c index 44dd903..116cd77 100644 --- a/gst/gstpadtemplate.c +++ b/gst/gstpadtemplate.c @@ -431,10 +431,12 @@ gst_pad_template_set_property (GObject * object, guint prop_id, GST_PAD_TEMPLATE_NAME_TEMPLATE (object) = g_value_dup_string (value); break; case PROP_DIRECTION: - GST_PAD_TEMPLATE_DIRECTION (object) = g_value_get_enum (value); + GST_PAD_TEMPLATE_DIRECTION (object) = + (GstPadDirection) g_value_get_enum (value); break; case PROP_PRESENCE: - GST_PAD_TEMPLATE_PRESENCE (object) = g_value_get_enum (value); + GST_PAD_TEMPLATE_PRESENCE (object) = + (GstPadPresence) g_value_get_enum (value); break; case PROP_CAPS: /* allow caps == NULL for backwards compatibility (ie. g_object_new()