diff parser.c @ 7992:b5f5257c0c70 libavcodec

Mark list heads static. Patch by Diego Petten
author lu_zero
date Sat, 04 Oct 2008 09:29:31 +0000
parents f855f314fb62
children def5fcc1d40e
line wrap: on
line diff
--- a/parser.c	Sat Oct 04 01:11:04 2008 +0000
+++ b/parser.c	Sat Oct 04 09:29:31 2008 +0000
@@ -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;