Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego Pettenò <flameeyes@gmail.com>2008-10-04 13:29:31 +0400
committerLuca Barbato <lu_zero@gentoo.org>2008-10-04 13:29:31 +0400
commite6df765ed3adfe24c13b88eef72aae6a8c127f28 (patch)
treeea06d769087eb20442b9dc7b914676eca8b57072 /libavcodec/utils.c
parent88b77ef1e0c651c5bf17e10bfa4694905c28aad8 (diff)
Mark list heads static. Patch by Diego Pettenò
Originally committed as revision 15548 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/utils.c')
-rw-r--r--libavcodec/utils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/utils.c b/libavcodec/utils.c
index b79d235445..31a5d37347 100644
--- a/libavcodec/utils.c
+++ b/libavcodec/utils.c
@@ -79,7 +79,7 @@ void *av_fast_realloc(void *ptr, unsigned int *size, unsigned int min_size)
}
/* encoder management */
-AVCodec *first_avcodec = NULL;
+static AVCodec *first_avcodec = NULL;
AVCodec *av_codec_next(AVCodec *c){
if(c) return c->next;