diff options
author | Michael Niedermayer | 2013-01-07 14:14:41 +0100 |
---|---|---|
committer | Michael Niedermayer | 2013-01-07 14:20:28 +0100 |
commit | 7a6beedd3fcd1ff0fc3f314cb5ec58db116d19ee (patch) | |
tree | 3a26bb787b5273391c292589d9deace8bfde38ab | |
parent | 1700be585593634c68fa7ccd193bfcb6b3c70822 (diff) |
oggparsevorbis: fix vorbis_cleanup return type
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavformat/oggparsevorbis.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/oggparsevorbis.c b/libavformat/oggparsevorbis.c index 5510115bc8..16bcaefd4d 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; |