summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Niedermayer <[email protected]>2013-01-07 14:14:41 +0100
committerMichael Niedermayer <[email protected]>2013-04-07 16:38:29 +0200
commit119b7a6c7cd8e895446f0b9a982558ac76433718 (patch)
tree34f43010cb9ec52db001118b4cd402dc833a65d7
parent4b6b0a164c8c21a7363baaa2590c9f1e52b46a00 (diff)
oggparsevorbis: fix vorbis_cleanup return type
Signed-off-by: Michael Niedermayer <[email protected]> (cherry picked from commit 7a6beedd3fcd1ff0fc3f314cb5ec58db116d19ee) Signed-off-by: Michael Niedermayer <[email protected]>
-rw-r--r--libavformat/oggparsevorbis.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/oggparsevorbis.c b/libavformat/oggparsevorbis.c
index 0c26684dd2..7ec7a9eaeb 100644
--- a/libavformat/oggparsevorbis.c
+++ b/libavformat/oggparsevorbis.c
@@ -188,7 +188,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;