summaryrefslogtreecommitdiffstats
path: root/codec-cfg.c
diff options
context:
space:
mode:
authorreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2010-06-19 18:37:06 +0000
committerUoti Urpala <uau@glyph.nonexistent.invalid>2010-11-02 04:11:07 +0200
commit65564cdf2c521f89ffc05999020214d9e54fb2da (patch)
tree30174960cc4908e5e37ce0e28323e91c7540cc2a /codec-cfg.c
parent2465ec9027bd457d10a65250bd286a1905f952ab (diff)
downloadmpv-65564cdf2c521f89ffc05999020214d9e54fb2da.tar.bz2
mpv-65564cdf2c521f89ffc05999020214d9e54fb2da.tar.xz
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
Diffstat (limited to 'codec-cfg.c')
-rw-r--r--codec-cfg.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/codec-cfg.c b/codec-cfg.c
index 70454b2dd4..a6c1addee6 100644
--- a/codec-cfg.c
+++ b/codec-cfg.c
@@ -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!='%'){