mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-06-06 23:48:53 +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;
|
GstCaps *caps;
|
||||||
|
|
||||||
caps = g_slice_new (GstCapsImpl);
|
caps = (GstCaps *) g_slice_new (GstCapsImpl);
|
||||||
|
|
||||||
gst_caps_init (caps, sizeof (GstCapsImpl));
|
gst_caps_init (caps, sizeof (GstCapsImpl));
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue