From ec4f04da1a3462dac429b9d15dee5f027309da15 Mon Sep 17 00:00:00 2001 From: Diego Biurrun Date: Sat, 26 Jul 2014 02:47:41 -0700 Subject: avformat: Mark argument in av_{i|o}format_next/ffurl_protocol_next as const --- libavformat/avio.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavformat/avio.c') diff --git a/libavformat/avio.c b/libavformat/avio.c index fe42974d3a..80863da9e3 100644 --- a/libavformat/avio.c +++ b/libavformat/avio.c @@ -32,7 +32,7 @@ static URLProtocol *first_protocol = NULL; -URLProtocol *ffurl_protocol_next(URLProtocol *prev) +URLProtocol *ffurl_protocol_next(const URLProtocol *prev) { return prev ? prev->next : first_protocol; } -- cgit v1.2.3