1
mirror of https://github.com/mpv-player/mpv synced 2024-07-31 16:29:58 +02:00

codec-cfg.c: Add static to functions used only locally.

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31474 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
reimar 2010-06-19 18:37:06 +00:00 committed by Uoti Urpala
parent 2465ec9027
commit 65564cdf2c

View File

@ -921,7 +921,7 @@ void list_codecs(int audioflag){
#ifdef CODECS2HTML
void wrapline(FILE *f2,char *s){
static void wrapline(FILE *f2,char *s){
int c;
if(!s){
fprintf(f2,"-");
@ -932,7 +932,7 @@ void wrapline(FILE *f2,char *s){
}
}
void parsehtml(FILE *f1,FILE *f2,codecs_t *codec,int section,int dshow){
static void parsehtml(FILE *f1,FILE *f2,codecs_t *codec,int section,int dshow){
int c,d;
while((c=fgetc(f1))>=0){
if(c!='%'){