mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-19 08:11:16 +00:00
structure: Fix compilation
This commit is contained in:
parent
3d2127f865
commit
077cf48689
1 changed files with 2 additions and 1 deletions
|
@ -2976,7 +2976,8 @@ gst_structure_is_equal (const GstStructure * structure1,
|
|||
if (structure1->name != structure2->name) {
|
||||
return FALSE;
|
||||
}
|
||||
if (structure1->fields->len != structure2->fields->len) {
|
||||
if (GST_STRUCTURE_FIELDS (structure1)->len !=
|
||||
GST_STRUCTURE_FIELDS (structure2)->len) {
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue