# HG changeset patch # User reynaldo # Date 1151968686 0 # Node ID ab29b3c4f94ed511bef7c35c6b1641894fc360e9 # Parent 24f323d637eb84888d5aa8b143777458de7c75d0 parse_cfgfiles as static in mplayer.c/mencoder.c, patch by Stefan Huehner, stefan AT huehner-org diff -r 24f323d637eb -r ab29b3c4f94e mencoder.c --- a/mencoder.c Mon Jul 03 23:13:25 2006 +0000 +++ b/mencoder.c Mon Jul 03 23:18:06 2006 +0000 @@ -302,7 +302,7 @@ exit(level); } -void parse_cfgfiles( m_config_t* conf ) +static void parse_cfgfiles( m_config_t* conf ) { char *conffile; if ((conffile = get_path("mencoder.conf")) == NULL) { diff -r 24f323d637eb -r ab29b3c4f94e mplayer.c --- a/mplayer.c Mon Jul 03 23:13:25 2006 +0000 +++ b/mplayer.c Mon Jul 03 23:18:06 2006 +0000 @@ -639,7 +639,7 @@ #include "cfg-mplayer.h" -void parse_cfgfiles( m_config_t* conf ) +static void parse_cfgfiles( m_config_t* conf ) { char *conffile; int conffile_fd;