From a7b96d0503ce00e42bcbd402e1ee44689a960368 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Sebastian=20Dr=C3=B6ge?= Date: Thu, 26 Jan 2012 14:57:14 +0100 Subject: [PATCH] caps: Fix compiler warning --- gst/gstcaps.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gst/gstcaps.c b/gst/gstcaps.c index 225da68..1cf0263 100644 --- a/gst/gstcaps.c +++ b/gst/gstcaps.c @@ -214,7 +214,7 @@ gst_caps_new_empty (void) { GstCaps *caps; - caps = g_slice_new (GstCapsImpl); + caps = (GstCaps *) g_slice_new (GstCapsImpl); gst_caps_init (caps, sizeof (GstCapsImpl)); -- 2.7.4