diff options
author | Tim-Philipp Müller <tim@centricular.net> | 2012-08-04 16:17:14 +0100 |
---|---|---|
committer | Tim-Philipp Müller <tim@centricular.net> | 2012-08-04 16:19:29 +0100 |
commit | 241419b46dd68f43a8aa639af2e55acd275d469c (patch) | |
tree | 3167dd87d1ee93783e51608cb90d59cfc60b00a2 /tests | |
parent | a24a87484eccea54f93933eae72f5c7b0619bcdb (diff) |
gst_tag_list_free -> gst_tag_list_unref
Diffstat (limited to 'tests')
-rw-r--r-- | tests/check/elements/avdemux_ape.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/check/elements/avdemux_ape.c b/tests/check/elements/avdemux_ape.c index c758b98..3751fc5 100644 --- a/tests/check/elements/avdemux_ape.c +++ b/tests/check/elements/avdemux_ape.c @@ -150,7 +150,7 @@ run_check_for_file (const gchar * filename, CheckTagsFunc * check_func) tags = read_tags_from_file (filename, FALSE); fail_unless (tags != NULL, "Failed to extract tags from '%s'", filename); check_func (tags, filename); - gst_tag_list_free (tags); + gst_tag_list_unref (tags); } #define tag_list_has_tag(taglist,tag) \ |