diff options
author | Diego Pettenò <flameeyes@gmail.com> | 2008-10-04 09:29:31 +0000 |
---|---|---|
committer | Luca Barbato <lu_zero@gentoo.org> | 2008-10-04 09:29:31 +0000 |
commit | e6df765ed3adfe24c13b88eef72aae6a8c127f28 (patch) | |
tree | ea06d769087eb20442b9dc7b914676eca8b57072 /libavcodec/utils.c | |
parent | 88b77ef1e0c651c5bf17e10bfa4694905c28aad8 (diff) | |
download | ffmpeg-e6df765ed3adfe24c13b88eef72aae6a8c127f28.tar.gz |
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.c | 2 |
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; |