summaryrefslogtreecommitdiff
path: root/libavformat/apetag.c
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2012-07-31 21:32:25 +0200
committerAnton Khirnov <anton@khirnov.net>2012-07-31 21:32:25 +0200
commit921063877e39e8cb7826928e6a7b08e2422e1f5c (patch)
treef4cc537ef21ce6b7e90b3eff154ec2c17b74c452 /libavformat/apetag.c
parentf2ed006c90ccb65cd143d8b0fcfc28ffb98c4289 (diff)
apetag: change a forgotten return to return 0
Diffstat (limited to 'libavformat/apetag.c')
-rw-r--r--libavformat/apetag.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/apetag.c b/libavformat/apetag.c
index dd746313b5..d075040166 100644
--- a/libavformat/apetag.c
+++ b/libavformat/apetag.c
@@ -159,7 +159,7 @@ int64_t ff_ape_parse_tag(AVFormatContext *s)
val = avio_rl32(pb); /* flags */
if (val & APE_TAG_FLAG_IS_HEADER) {
av_log(s, AV_LOG_ERROR, "APE Tag is a header\n");
- return;
+ return 0;
}
avio_seek(pb, file_size - tag_bytes, SEEK_SET);