summaryrefslogtreecommitdiff
path: root/libavcodec/parser.c
diff options
context:
space:
mode:
authorDiego Pettenò <flameeyes@gmail.com>2008-10-04 09:29:31 +0000
committerLuca Barbato <lu_zero@gentoo.org>2008-10-04 09:29:31 +0000
commite6df765ed3adfe24c13b88eef72aae6a8c127f28 (patch)
treeea06d769087eb20442b9dc7b914676eca8b57072 /libavcodec/parser.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/parser.c')
-rw-r--r--libavcodec/parser.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/parser.c b/libavcodec/parser.c
index 94399bfbbe..7262b92878 100644
--- a/libavcodec/parser.c
+++ b/libavcodec/parser.c
@@ -22,7 +22,7 @@
#include "parser.h"
-AVCodecParser *av_first_parser = NULL;
+static AVCodecParser *av_first_parser = NULL;
AVCodecParser* av_parser_next(AVCodecParser *p){
if(p) return p->next;