increased a bit max param length as it can be too short to declare tv channels when you have a long list of

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21817 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
ben 2007-01-04 16:06:01 +00:00
parent 96edf244f6
commit c179597c82
1 changed files with 1 additions and 1 deletions

View File

@ -39,7 +39,7 @@ int m_config_parse_config_file(m_config_t* config, char *conffile)
#define PRINT_LINENUM mp_msg(MSGT_CFGPARSER,MSGL_V,"%s(%d): ", conffile, line_num)
#define MAX_LINE_LEN 10000
#define MAX_OPT_LEN 1000
#define MAX_PARAM_LEN 1000
#define MAX_PARAM_LEN 1500
FILE *fp;
char *line;
char opt[MAX_OPT_LEN + 1];