mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 12:11:13 +00:00
caps: fix compilation warning
GST_STATIC_CAPS is missing initializer for GstMiniObject's n_weak_refs and weak_refs resulting in compilation warning (llvm-gcc -Wall) https://bugzilla.gnome.org/show_bug.cgi?id=664927
This commit is contained in:
parent
588dcec8ae
commit
62dce62e00
1 changed files with 1 additions and 1 deletions
|
@ -127,7 +127,7 @@ typedef enum {
|
|||
*/
|
||||
#define GST_STATIC_CAPS(string) \
|
||||
{ \
|
||||
/* miniobject */ { { 0, 0, 0, 0, NULL, NULL, NULL }, \
|
||||
/* miniobject */ { { 0, 0, 0, 0, NULL, NULL, NULL, 0, NULL }, \
|
||||
/* caps */ NULL }, \
|
||||
/* string */ string, \
|
||||
GST_PADDING_INIT \
|
||||
|
|
Loading…
Reference in a new issue