diff options
author | Sebastian Dröge <sebastian.droege@collabora.co.uk> | 2011-05-17 11:22:58 +0200 |
---|---|---|
committer | Sebastian Dröge <sebastian.droege@collabora.co.uk> | 2011-05-17 11:22:58 +0200 |
commit | 077cf486895a89f825b2c8691d74ccefdc07e761 (patch) | |
tree | 1e91129ad5d380903816d944d185425b0a217007 /gst | |
parent | 3d2127f865039f53fdff22f49d3cb1bfdec48858 (diff) |
structure: Fix compilation
Diffstat (limited to 'gst')
-rw-r--r-- | gst/gststructure.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gst/gststructure.c b/gst/gststructure.c index ba7e057ec..7b910ba46 100644 --- a/gst/gststructure.c +++ b/gst/gststructure.c @@ -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; } |