mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-22 14:06:23 +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) {
|
if (structure1->name != structure2->name) {
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
if (structure1->fields->len != structure2->fields->len) {
|
if (GST_STRUCTURE_FIELDS (structure1)->len !=
|
||||||
|
GST_STRUCTURE_FIELDS (structure2)->len) {
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue