summaryrefslogtreecommitdiff
path: root/libavformat/oggparsevorbis.c
diff options
context:
space:
mode:
authorLuca Barbato <lu_zero@gentoo.org>2013-01-09 20:49:34 +0100
committerLuca Barbato <lu_zero@gentoo.org>2013-01-09 21:07:48 +0100
commitfba8e5b608577fc660989d0057a55818254a3744 (patch)
tree26a293daf964ba79d0eceec308c1a6d3425a660f /libavformat/oggparsevorbis.c
parent06deaf8ad33a996c8ad606e29197ec9712960067 (diff)
oggdec: fix faulty cleanup prototype
Diffstat (limited to 'libavformat/oggparsevorbis.c')
-rw-r--r--libavformat/oggparsevorbis.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/oggparsevorbis.c b/libavformat/oggparsevorbis.c
index fbe6c4fb41..bb41b52ca2 100644
--- a/libavformat/oggparsevorbis.c
+++ b/libavformat/oggparsevorbis.c
@@ -192,7 +192,7 @@ fixup_vorbis_headers(AVFormatContext * as, struct oggvorbis_private *priv,
return offset;
}
-static int vorbis_cleanup(AVFormatContext *s, int idx)
+static void vorbis_cleanup(AVFormatContext *s, int idx)
{
struct ogg *ogg = s->priv_data;
struct ogg_stream *os = ogg->streams + idx;