mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-25 17:50:36 +00:00
caps: Fix compiler warning
This commit is contained in:
parent
28f5b86637
commit
a7b96d0503
1 changed files with 1 additions and 1 deletions
|
@ -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));
|
||||
|
||||
|
|
Loading…
Reference in a new issue